PHP code example of php-middleware / request-id
1. Go to this page and download the library: Download php-middleware/request-id 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/ */
php-middleware / request-id example snippets
$generator = new PhpMiddleware\RequestId\Generator\PhpUniqidGenerator();
$requestIdProvider = new PhpMiddleware\RequestId\RequestIdProviderFactory($generator);
$requestIdMiddleware = new PhpMiddleware\RequestId\RequestIdMiddleware($requestIdProvider);
$app = new MiddlewareRunner();
$app->add($requestIdMiddleware);
$app->run($request, $response);