PHP code example of nytrix / cleverload

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

    

nytrix / cleverload example snippets


use lib\Cleverload;
use lib\Http\Request;
use lib\Routing\Router;

est);
$cleverload->getRequest()->getRouter()->getResponse();

Route::get("/",function(){});
Route::post("/",function(){});
Route::put("/",function(){});
Route::patch("/",function(){});
Route::delete("/",function(){});
Route::all("/",function(){});

$cleverload->viewDir("/path/to/view");

Route::get("/","index.php");