Contao\Session::set PHP 메소드

set() 공개 메소드

Set a session variable
public set ( string $strKey, mixed $varValue )
$strKey string The variable name
$varValue mixed The variable value
    public function set($strKey, $varValue)
    {
        // Map the referer (see #281)
        if (in_array($strKey, $this->mappedKeys)) {
            $this->session->set($strKey, $varValue);
        } else {
            $this->sessionBag->set($strKey, $varValue);
        }
    }