A lightweight and customizable Object-Oriented PHP library for backend development.
EasyBackEndPHP simplifies backend development by providing built-in support for:
✅ SQL Queries
✅ FTP Connections
✅ Image Size Modifications
✅ Session Management
✅ String Manipulation
- Clone or download the repository
git clone https://github.com/llogaricasas/EasyBackEndPHP.git
- Include the library in your PHP file
require 'EasyBackEndPHP.php';
Initialize the library and start using its features:
$library = new EasyBackEndPHP();
Convert strings to a specific character encoding format.
$CharEncoding = $library->CharEncoding($string);
🔹 Use case: Ensures proper text formatting when handling different character sets.
Connect to an FTP server for file transfers.
$FTP = $library->FTP($host, $user, $password);
🔹 Use case: Upload/download files from a remote server.
Modify image sizes and apply changes.
$ImageEditor = $library->ImageEditor($filename);
🔹 Use case: Resize images dynamically for web applications.
Establish a connection to a MySQL database.
$MySQL = $library->MySQL($host, $database, $user, $password);
🔹 Use case: Perform SQL queries and manage data efficiently.
Handle user sessions securely.
$Session = $library->Session($lifetime, $path, $domain, $secure, $http_only);
🔹 Use case: Maintain user authentication and session state.
Generate random strings of a specified length.
$StringGenerator = $library->StringGenerator($length);
🔹 Use case: Useful for generating unique tokens, passwords, or IDs.
EasyBackEndPHP is maintained by Llogari Casas