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');
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\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();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.