Join 4,000+ others and never miss out on new tips, tutorials, and more.
25.x is outdated, please check the latest version 26.x
Latest version:
pecl install openswoole-26.2.0
<?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());
});