网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 Yii2中cookie用法示例分析
内容
    本文实例讲述了Yii2中cookie用法。分享给大家供大家参考,具体如下:
    <?php
    //设置方法
    $cookie = new Cookie([
      'name' => 'cookie_monster',
      'value' => 'Me want cookie!',
      'expire' => time() + 86400 * 365,
    ]);
    \Yii::$app->getResponse()->getCookies()->add($cookie);
    //读取方法
    $value = \Yii::$app->getRequest()->getCookies()->getValue('my_cookie');
    //给cookie加域名
    $cookie = new Cookie([
      'name' => 'cookie_monster',
      'value' => 'Me want cookie everywhere!',
      'expire' => time() + 86400 * 365,
      'domain' => '.example.com' // <<<=== HERE
    ]);
    \Yii::$app->getResponse()->getCookies()->add($cookie);
    //设置登录cookie
    $config = [
      // ...
      'components' => [
        // ...
        'user' => [
          'class' => 'yii\web\User',
          'identityClass' => 'app\models\User',
          'enableAutoLogin' => true,
          'loginUrl' => '/user/login',
          'identityCookie' => [ // <---- here!
            'name' => '_identity',
            'httpOnly' => true,
            'domain' => '.example.com',
          ],
        ],
        'request' => [
          'cookieValidationKey' => 'your_validation_key'
        ],
        'session' => [
          'cookieParams' => [
            'domain' => '.example.com',
            'httpOnly' => true,
          ],
        ],
      ],
    ];
    //只给批定目录配置cookie
    $config = [
      // ...
      'components' => [
        // ...
        'session' => [
          'name' => 'admin_session',
          'cookieParams' => [
            'httpOnly' => true,
            'path' => '/admin',
          ],
        ],
      ],
    ];
    ?>
    希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/17 19:18:07