cookie設(shè)置失敗
$cookie = \YII::$app->response->cookies;
? $cookie->add(new Cookie(['user' => 'zhangsan',
'value' => 'lihaile']));
已經(jīng)use yii\web\Cookie,但是網(wǎng)頁提示錯(cuò)誤
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'
你再試一下