PHP code example of alpha-zeta / simple-route

1. Go to this page and download the library: Download alpha-zeta/simple-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/ */

    

alpha-zeta / simple-route example snippets


return [
    'home'      => ['/', fn() => new HtmlResponse('This is homepage')],
    'about'     => ['/about', AboutHandler::class],
    'auth'      => ['/auth/{action?}' Auth::class],
    'posts'     => ['/posts', [PostController::class, 'list']],
    'post'      => ['/post/{id}/{slug?}', PostController::class, ['slug' => '[\w-]*']],
    'post.save' => ['/post/{id?}', [PostController::class, 'save']],
]

use Az\Route\Router;
...
$router = new Router(['../config/routes.php', '../module/routes.php']);

if (!$route = $this->router->match($request)) {
    //abort(404)
}

$handler = $route->getInstance($container);
$response = $handler->handle($request);

...
use Az\Route\RouterInterface;
use Az\Route\Route;
...

return [
    ...
    RouterInterface::class => fn() => new Router('../config/routes.php'),
    ...
]

...
$this->pipe(RouteMatch::class);
$this->pipe(RouteDispatch::class);

  'name' => [pattern, handler, tokens],   
  'auth' => ['/auth/{action?}', Auth::class]
  

  ...
  use Az\Route\Route;
  ...
  #[Route(methods: 'any')]
  #[Route(host: 'localhost')]
  class ClassName
  {
    #[Route(filter: 'some_function')]
    #[Route(ajax: false, tokens: ['id' => '\d+'])]
    public function show($id)

    #[Route(methods: ['post', 'patch'])]
    public function save($id = null)
  }
  

    function my_filter(Az\Route\Route $route, ServerRequestInterface $request): bool
    

  - fn($arg) => new Request(...)
  - function ($arg1, $arg2) {...}
  - ClassName::class
  - [ClassName::class, 'methodName']
  - 'Ns\ClassName::methodName' or 'Ns\ClassName@methodName'
  - $instance or [$instance, 'methodName']