Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 566 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 566 Bytes

yii-lib-cookie

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