欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Yii2中cookie用法示例分析

程序员文章站 2024-02-24 22:59:46
本文实例讲述了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相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于yii框架的php程序设计有所帮助。