Swoole\Http\Request->cookie

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Http\Request->cookie: array

Parameters

None

Return

Array

Description

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.

Example

<?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);
});
Last updated on August 31, 2022