文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

PHP yii学习3

2023-01-31 02:15

关注
yii

一,在Yii中使用session
1,CHttpSession
与原生态php5的session使用差别是,php5使用session_start();$_session['key'] = $value;
在yii中,session已经被封装。
To start the session, call open(); To complete and send out session data, call close(); To destroy the session, call destroy().

If autoStart is set true, the session will be started automatically when the application component is initialized by the application.

Java代码  收藏代码
  1. $session=new CHttpSession;  

  2. $session->open();  

  3. $value1=$session['name1'];  

  4. Yii::app()->session->add('name','foobar');  

  5. Yii::app()->session->add('name2','foobar');  

  6. Yii::app()->session->add('name3','foobar');  

  7. //或者

  8. $session = Yii::app()->session;  

  9. $session['key'] = 'value';  

  10. var_dump($session['key']);  

  11. //遍历

  12. foreach($session as $name=>$value)  

一个实例

Java代码  收藏代码
  1. $session = new CHttpSession;  

  2. $session->open();  

  3. $user_id = $this->user->id;  

  4. $sessionKey = $user_id.'_is_sending';  

  5. if(isset($session[$sessionKey])){  

  6.    $first_submit_time = $session[$sessionKey];  

  7.    $current_time      = time();  

  8. if($current_time - $first_submit_time < 10){  

  9.        $session[$sessionKey] = $current_time;  

  10.        $this->response(array('status'=>1, 'msg'=>'不能在10秒钟内连续发送两次。'));  

  11.    }else{  

  12.        unset($session[$sessionKey]);//超过限制时间,释放session";

  13.    }  

  14. }  

  15. //第一次点击确认按钮时执行

  16. if(!isset($session[$sessionKey])){  

  17.    $session[$sessionKey] = time();  

  18. }  

  19. var_dump($sessionKey);var_dump($session[$sessionKey]);exit();  

在index.php

在$app->run();前

Java代码  收藏代码
  1. $session = Yii::app()->session;  

  2. session_set_save_handler(  

  3.    array($session,'openSession'),  

  4.    array($session,'closeSession'),  

  5.    array($session,'readSession'),  

  6.    array($session,'writeSession'),  

  7.    array($session,'destroySession'),  

  8.    array($session,'gcSession')  

  9. );  

2,CDbHttpSession

CDbHttpSession继承自 CHttpSession ,把session数据存储在数据库中(表名是YiiSession),
The table name can be changed by setting sessionTableName. If the table does not exist, it will be automatically created if autoCreateSessionTable is set true.

The following is the table structure:
CREATE TABLE YiiSession
(
   id CHAR(32) PRIMARY KEY,
   expire INTEGER,
   data TEXT
)

CDbHttpSession relies on PDO to access database.

By default, it will use an SQLite3 database named 'session-YiiVersion.db' under the application runtime directory. You can also specify connectionID so that it makes use of a DB application component to access database.

When using CDbHttpSession in a production server, we recommend you pre-create the session DB table and set autoCreateSessionTable to be false. This will greatly improve the performance. You may also create a DB index for the 'expire' column in the session table to further improve the performance.

Sql代码  收藏代码
  1. CREATETABLE `YiiSession` (  

  2.  `id` char(32) NOTNULL,  

  3.  `expire` int(11) defaultNULL,  

  4.  `data` text,  

  5. PRIMARYKEY  (`id`),  

  6. KEY `expire` (`expire`)  

  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;  

例,在../config/main.php中配置

Php代码  收藏代码
  1. 'session'=>array(  

  2. 'class' => 'CDbHttpSession',  

  3. 'autoStart' => true,  

  4. 'sessionTableName'=>'YiiSession',  

  5. 'autoCreateSessionTable'=> false,  

  6. 'connectionID'=>'db',  

  7.        ),  

二,在Yii中使用cookie

Yii实现了一个cookie验证机制,可以防止cookie被修改。启用之后可以对cookie的值进行HMAC检查。
Cookie验证在默认情况下是禁用的。如果你要启用它,可以编辑应用配置 中的组件中的CHttpRequest部分。

一定要使用经过Yii验证过的cookie数据。使用Yii内置的cookies组件来进行cookie操作,不要使用$_COOKIES。

实例:

Php代码  收藏代码
  1. // 检索一个名为$name的cookie值

  2. $cookie=Yii::app()->request->cookies[$name];  

  3. $value=$cookie->value;  

  4. ......  

  5. // 设置一个cookie

  6. $cookie=new CHttpCookie($name,$value);  

  7. Yii::app()->request->cookies[$name]=$cookie;  

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯