<?php
header('content-type:text/html;charset=utf-8');
/*
* 更改 session 存储位置及存储方式。
*/
ini_set('session.save_handler', 'redis');
ini_set('session.save_path', 'tcp://127.0.0.1:6379');
/**
* 现在操作 session。
* 无需改变任何操作方式,仍是原生操作方式。
*/
session_start();
$_SESSION['user_name'] = '212121212121221';
/**
* 我们来验证一波。
* 连接 redis 根据 session_id 取出对应数据。
*/
$redis = new \Redis();
$redis -> connect('127.0.0.1' , 6379);
$a = $redis->get('PHPREDIS_SESSION:' . session_id());
var_dump($a);
相关文章
- 10-28.NET Core Session的简单使用
- 10-28【Distributed】分布式Session一致性问题
- 10-28HttpHandler和ashx使用Session 出现未初始化异常
- 10-28分布式系统里session同步
- 10-28session_write_close()
- 10-28HttpHandler中无法使用Session(context.Session 为Null)
- 10-28Flask Session 详解
- 10-28org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not
- 10-28org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here
- 10-28org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not a