Reference
Usage
Creating an application consists of 3 steps:
- Create middleware or a middleware pipeline
- Create a server, using the middleware
- Instruct the server to listen for a request
use Zend\Stratigility\MiddlewarePipe;
use Zend\Diactoros\Server;
require __DIR__ . '/../vendor/autoload.php';
$app    = new MiddlewarePipe();
$server = Server::createServer(
  [$app, 'handle'],
  $_SERVER,
  $_GET,
  $_POST,
  $_COOKIE,
  $_FILES
);
$server->listen(function ($req, $res) {
  return $res;
});
The above example is useless by itself until you pipe middleware into the application.
Found a mistake or want to contribute to the documentation? Edit this page on GitHub!