PHP 8.6.0 Beta 2 available for testing

Yaf_Request_Abstract::getCookie

(Yaf >=3.2.2)

Yaf_Request_Abstract::getCookieFetch a COOKIE variable

Описание

public function Yaf_Request_Abstract::getCookie(string $name = ?, mixed $default = ?): mixed

Retrieves a variable from $_COOKIE.

Список параметров

name

The variable name. If omitted, the whole array is returned.

default

The value to return if the variable is not found.

Возвращаемые значения

The cookie value, or default if it is not set.

Примеры

Пример #1 Yaf_Request_Abstract::getCookie() example

<?php
class UserController extends Yaf_Controller_Abstract
{
    public function profileAction()
    {
        $request = $this->getRequest();

        $theme     = $request->getCookie("theme", "light");
        $sessionId = $request->getCookie("sid");

        var_dump($theme, $sessionId);
    }
}
?>

Вывод приведённого примера будет похож на:

string(4) "dark"
string(8) "1f2a3b4c"

Смотрите также

Добавить

Примечания пользователей

Пользователи ещё не добавляли примечания для страницы
To Top