1. Go to this page and download the library: Download nezamy/route 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/ */
use Just\Route;
Route::get('/', function (){
return 'Welcome to the home page';
});
// Maybe you want to customize 404 page
Route::setNotfound(function (){
return 'Page Not found';
});
declare(strict_types=1);
use Swoole\Http\Server;
use Swoole\Http\Request;
use Swoole\Http\Response;
use Just\Routing\Router;
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
Http\Request(
$request->header ?? [],
$request->server ?? [],
$request->cookie ?? [],
$request->get ?? [],
$request->post ?? [],
$request->files ?? [],
$request->tmpfiles ?? []
);
$response = new Just\Http\Response;
$route = new Just\Routing\Router($request, $response);
container()->set(Just\Http\Request::class, $request);
container()->set(Just\Http\Response::class, $response);
container()->set(Router::class, $route);
try {
// This example will match any page name
Route::get('/{page}', function($page) {
return "you are in $page";
});
Route::get('/post/{id}', function($id) {
// Will match anything like post/hello or post/5 ...
// But not match /post/5/title
return "post id $id";
});
// more than parameters
Route::get('/post/{id}/{title}', function($id, $title) {
return "post id $id and title $title";
});
// you can get parameter in any order
Route::get('/post/{id}/{title}', function($title, $id) {
return "post id $id and title $title";
});
// This example will match anything after blog/ - unlimited arguments
Route::get('/blog/{any}:*', function($any) {
pre($any);
});
// Validate args by regular expressions uses :(your pattern here)
Route::get('/{username}:([0-9a-z_.-]+)/post/{id}:([0-9]+)',
function($username, $id) {
return "author $username post id $id";
});
// You can add named regex pattern in routes
Route::addPlaceholders([
'username' => '([0-9a-z_.-]+)',
'id' => '([0-9]+)'
]);
// Now you can use named regex
Route::get('/{username}:username/post/{id}:id', function($username, $id) {
return "author $username post id $id";
});
//if the parameter name match the placeholder name just ignore placeholder and route will deduct that
Route::get('/{username}/post/{id}', function($username, $id) {
return "author $username post id $id";
});
// the first language is the default i.e. ar
// when you hit the site http://localhost on the first time will redirect to http://localhost/ar
Route::locale(['ar','en'], function(){
// will be /ar/
Route::get('/', function($locale){
//get current language
pre($locale);
});
// /ar/contact
Route::get('/contact', function() {});
Route::group('/blog', function() {
// /ar/blog/
Route::get('/', function() {});
});
});
// Also you can write locales like that or whatever you want
Route::locale(['ar-eg','en-us'], function(){
// will be /ar/
Route::get('/', function($locale){
//get current language
list($lang, $country) = explode('-', $locale, 2);
pre("Lang is $lang, Country is $country");
});
});
$auth = new \Just\Http\Auth\Basic(['users' => [
'user1' => '123456',
'user2' => '987654'
]]);
Route::auth($auth, function (){
Route::get('/secret', function(\Just\Http\Request $req){
pre("Hello {$req->user()->get('username')}, this is a secret page");
});
});
$auth = new \Just\Http\Auth\Digest(['users' => [
'user1' => '123456',
'user2' => '987654'
]]);
Route::auth($auth, function (){
Route::get('/secret', function(\Just\Http\Request $req){
pre("Hello {$req->user()->get('username')}, this is a secret page");
});
});
Route::use(function (\Just\Http\Request $req, $next){
//validate something the call next to continue or return whatever if you want break
if($req->isMobile()){
return 'Please open from a desktop';
}
return $next();
}, function ($next){
// another middleware
$next();
});
// After
Route::use(function ($next){
$response = $next();
// make some action
return $response;
});
// if open from mobile device
Route::middleware(fn(\Just\Http\Request $req, $next) => !$req->isMobile() ? '' : $next())
->group('/mobile-only', function (){
Route::get('/', function(\Just\Http\Request $req){
pre($req->browser());
});
});
class MobileOnly{
public function handle(\Just\Http\Request $req, $next){
return !$req->isMobile() ? '' : $next();
}
}
Route::middleware(MobileOnly::class)
->group('/',function (){
Route::get('/', function(\Just\Http\Request $req){
pre($req->browser());
});
});