1. Go to this page and download the library: Download hellointeractiv/asphalte 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/ */
hellointeractiv / asphalte example snippets
$route = new Asphalte;
# Exemple
$result = "";
$result = $route->get('/test', function ($route) {
return $route;
});
# result return 3 variables in object(stdClass) statut request size and dynamic vars if there is
echo $result->statut;
echo $result->sizetatut;
var_dump($result->request);
#or
$result = $route->match('GET','/test', "base_controler@test");
# result lunch controler-> function if exeist
if($result==""){
echo "404";
}else{
echo $result;
}
# variables dynamic
$result = $route->get('/article/:id', function ($route) {
return $route;
});
echo $result->id;
# return 3 variables in object(stdClass) statut request and dynamic vars
#
# object(stdClass)(3) {
# ["statut"]=>bool(true),
# ["request"]=>array(2) {
# [0]=>string(7) "article"
# [1]=>string(4) "test"
# },
# ["size"]=>2,
# ["id"]=>string(4) "test"
# }
$route->get_map("test/:id");
#object(stdClass) (3) {
# ["method"]=>string(3) "get"
# ["request"]=>
# array(2) {
# [0]=>string(4) "test"
# [1]=>string(4) "ouoi"
# }
# ["size"]=>int(2)
# }
#route can be have many vars in array )
if( $route->get(...
if( $route->post(...
if( $route->any(...
if( $route->put(...
if( $route->delete(...
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.