1. Go to this page and download the library: Download alkemann/h2l 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/ */
alkemann / h2l example snippets
use alkemann\h2l\{Request, Router, Response, response\Json};
// Get task by id, i.e. GET http://example.com/api/tasks/12
Router::add(
'|^api/tasks/(?<id>\d+)$|',
function(Request $request): Response
{
$id = $request->param('id'); // from the regex matched url part
$data_model = app\Task::get($id);
return new Json($data_model); // since Task model implements \JsonSerializable
}
);
// http://example.com/version
Router::add('version', function($r) {
return new Json(['version' => '1.3']);
});