yii\web\Cookie::__toString PHP Method

__toString() public method

php if (isset($request->cookies['name'])) { $value = (string) $request->cookies['name']; }
public __toString ( ) : string
return string The value of the cookie. If the value property is null, an empty string will be returned.
    public function __toString()
    {
        return (string) $this->value;
    }