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->cookie: array
None
Array
The Swoole\Http\Request->cookie
class property is an array which contains HTTP request cookie data. It is a key-value array and is equivalent to the PHP super global variable $_COOKIE
.
All the array keys are lowercase.
<?php
$server->on('Request', function(Swoole/Server/Request $request, Swoole/Server/Response $response)
{
echo $request->cookie['username'];
// See the whole cookie array
var_dump($request->cookie);
});