Skip to content

ServerRequest: getCookieParams Example

Terry L edited this page Jun 18, 2020 · 3 revisions

Extends Request.

getCookieParams()

  • return array

Example:

$cookieParams = $serverRequests->getCookieParams();

print(print_r($cookieParams, true));

/* Outputs:

    Array
    (
        [foo] => bar
    )

*/

Clone this wiki locally