PHP code example of ddrv / server-request-wizard
1. Go to this page and download the library: Download ddrv/server-request-wizard 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/ */
ddrv / server-request-wizard example snippets
/**
* @var Psr\Http\Message\ServerRequestFactoryInterface $serverRequestFactory
* @var Psr\Http\Message\StreamFactoryInterface $streamFactory
* @var Psr\Http\Message\UploadedFileFactoryInterface $UploadedFileFactory
*/
$wizard = new Ddrv\ServerRequestWizard\ServerRequestWizard($serverRequestFactory, $streamFactory, $UploadedFileFactory);
$request = $wizard->create($_GET, $_POST, $_SERVER, $_COOKIE, $_FILES);