Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5
<?php OpenSwoole\Http\Request->getData(): string
None
A complete string of the whole HTTP message, header and body
Get the raw whole HTTP request data, includes the headers and POST body message from the request sent to the server.
<?php
$server->on('Request', function(OpenSwoole\Server\Request $request, OpenSwoole\Server\Response $response)
{
var_dump($request->getData());
});