cookie設置失敗
$cookie = \YII::$app->response->cookies;
? $cookie->add(new Cookie(['user' => 'zhangsan',
'value' => 'lihaile']));
已經use yii\web\Cookie,但是網頁提示錯誤
Unknown Property?–?yii\base\UnknownPropertyException
Setting unknown property: yii\web\Cookie::user
2017-12-05
$cookie->add(new Cookie(['user' => 'zhangsan',
'value' => 'lihaile']));
不是'user' => 'zhangsan',是name=>'zhangsan'
你再試一下