Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 22.x
Latest version:
pecl install openswoole-22.1.2
<?php Swoole\Http\Request->get: array
None
Array
The Swoole\Http\Request->get
class property is an array which contains the information of HTTP GET URL parameters. For example a URL like http://shop.co.uk/tools/hammers?price=high
is where price=high
will be inside the Swoole\Http\Request->get
array.
This array is equivalent to the PHP super global of $_GET
, you should use Swoole\Http\Request->get
instead.
<?php
$server->on('Request', function(Swoole/Server/Request $request, Swoole/Server/Response $response)
{
// Show the selected price filter from the URL
echo $request->get['price'];
// Display all the GET parameters
var_dump($request->get);
});