yiiman / yii-lib-cookie
Cookie library for Yii2 and Yii3 framework - very easy and powerfull
v0.0.2
2022-01-03 02:26 UTC
Requires
- php: >=7.0
- ext-json: *
- yiiman/yii-module-setting: 0.0.2
- yiisoft/yii2: 2.0.*
README
Cookie library for Yii2 framework - very easy and powerfull
Set Component
In Yii Advanced go to path:
common\config\main.php
And in Yii Basic go to path:
config\main.php
Add component to component
array:
[ 'components'=> [ 'cookie'=>YiiMan\YiiLibCookie\lib\cookie::class ] ]
Now you can call component like this:
Yii::$app->cookie
Set value to cookie
Just do :
Yii::$app->cookie->newKey='new value';
Get saved value
Just do :
$value=Yii::$app->cookie->newKey