PHP code example of lawrence72 / koala-framework

1. Go to this page and download the library: Download lawrence72/koala-framework library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lawrence72 / koala-framework example snippets



Koala\Application;
use App\Config\Routes;

$app = new Application();
Routes::register($app->getRouter());
$app->start(__DIR__ . '/../config.php');


return [
    'paths' => [
        'base_directory' => __DIR__,
        'app_directory' => __DIR__ . '/app'
    ],
    'database' => [
        'driver' => 'mysql',
        'host' => 'localhost',
        'port' => 3306,
        'dbname' => 'your_database',
        'username' => 'your_username',
        'password' => 'your_password',
        'charset' => 'utf8mb4'
    ],
    'autoload' => [
        'paths' => [
            'Controllers',
            'Logic',
            'Middleware'
        ]
    ]
];

class YourController {
    public function __construct(
        protected Application $app,
        protected YourLogic $logic
    ) {}
}

public static function register(Router $router): void
{
    $router->group('/users', function ($router) {
        $router->addRoute('GET', '', UserController::class, 'index');
        $router->addRoute('GET', '/@id[0-9]', UserController::class, 'show');
    }, ['middleware' => [[AuthMiddleware::class, 'handle']]]);
}

// Fetch all users
$users = $this->database->fetchAll("SELECT * FROM users");

// Fetch single user
$user = $this->database->fetchRow("SELECT * FROM users WHERE id = ?", [$id]);

// Fetch just the email field
$email = $this->database->fetchField("SELECT email FROM users WHERE id = ?", [$id]);

// Insert new user
$this->database->runQuery(
    "INSERT INTO users (name, email) VALUES (?, ?)",
    ['John Doe', '[email protected]']
);

// Get specific parameters
$userId = $request->getQueryParam('user_id', 0);  // with default value
$name = $request->getPostParam('name');
$email = $request->getJsonParam('email');

// Get all parameters
$allQueryParams = $request->getQueryParams();
$allPostData = $request->getPostParams();

use Koala\Utils\Session;

// Basic usage
$this->session->set('user_id', 123);
$userId = $this->session->get('user_id');

// Flash messages
$this->session->setFlash('Profile updated!', 'success');
$messages = $this->session->getFlash();

use Koala\Utils\Cookie;

// Basic usage
$cookie->set('user_pref', 'dark_mode', 3600);  // 1 hour expiry
$preference = $cookie->get('user_pref');

// Advanced options
$cookie->set(
    'user_token',
    'abc123',
    3600,        // Time
    '/',        // Path
    'domain.com', // Domain
    true,      // Secure
    true       // HTTP Only
);

use Koala\Utils\Sanitize;

$sanitizer = new Sanitize();

// Basic string cleaning
$clean = $sanitizer->clean($userInput);

// Allow specific HTML tags
$allowedTags = ['b', 'i', 'a'];
$cleanHtml = $sanitizer->clean($userInput, $allowedTags);

namespace App\Controllers;

use Koala\Request\Request;
use Koala\Response\Response;
use Koala\Response\ResponseInterface;

class UserController {
    public function index(Request $request, Response $response, $args): ResponseInterface
    {
        return $response->view('users/index', [
            'users' => $this->logic->getAllUsers()
        ]);
    }
}

namespace App\Logic;

use Koala\Logic\BaseLogic;

class UserLogic extends BaseLogic {
    public function getAllUsers(): array {
        return $this->database->fetchAll("SELECT * FROM users");
    }
}

namespace App\Middleware;

use Koala\Request\Request;

class AuthMiddleware {
    public function handle(Request $request, callable $next) {
        // Authentication logic
        return $next();
    }
}