Table of Contents
基于redis的处理session的方法,redis处理session
Home php教程 php手册 基于redis的处理session的方法,redis处理session

基于redis的处理session的方法,redis处理session

Jun 13, 2016 am 08:44 AM
sign in

基于redis的处理session的方法,redis处理session

一个基于redis的处理session的方法,如下。

<span> 1</span> <?<span>php
</span><span> 2</span> <span>class</span><span> Session_custom {
</span><span> 3</span>     <span>private</span> <span>$redis</span>; <span>//</span><span> redis实例</span>
<span> 4</span>     <span>private</span> <span>$prefix</span> = 'sess_'; <span>//</span><span> session_id前缀
</span><span> 5</span>     
<span> 6</span> <span>    // 会话开始时,会执行该方法,连接redis服务器</span>
<span> 7</span>     <span>public</span> <span>function</span> open(<span>$path</span>, <span>$name</span><span>) {
</span><span> 8</span>         <span>$this</span>->redis = <span>new</span><span> Redis();
</span><span> 9</span>         <span>return</span> <span>$this</span>->redis->connect("127.0.0.1",6379<span>);
</span><span>10</span> <span>    }
</span><span>11</span>     
<span>12</span>     <span>//</span><span> 会话结束时,调用该方法,关闭redis连接</span>
<span>13</span>     <span>public</span> <span>function</span><span> close() {
</span><span>14</span>         <span>$this</span>->redis-><span>close();
</span><span>15</span>         <span>return</span> <span>true</span><span>;
</span><span>16</span> <span>    }
</span><span>17</span>     
<span>18</span>     <span>//</span><span> 会话保存数据时调用该方法,在脚本执行完或session_write_close方法调用之后调用</span>
<span>19</span>     <span>public</span> <span>function</span> write(<span>$session_id</span>, <span>$data</span><span>) {
</span><span>20</span>         <span>return</span> <span>$this</span>->redis->hMSet(<span>$this</span>->prefix.<span>$session_id</span>, <span>array</span>('expires' => <span>time</span>(), 'data' => <span>$data</span><span>));
</span><span>21</span> <span>    }
</span><span>22</span>     
<span>23</span>     <span>//</span><span> 在自动开始会话或者通过调用 session_start() 函数手动开始会话之后,PHP 内部调用 read 回调函数来获取会话数据。</span>
<span>24</span>     <span>public</span> <span>function</span> read(<span>$session_id</span><span>) {
</span><span>25</span>         <span>if</span>(<span>$this</span>->redis->exists(<span>$this</span>->prefix.<span>$session_id</span><span>)) {
</span><span>26</span>             <span>return</span> <span>$this</span>->redis->hGet(<span>$this</span>->prefix.<span>$session_id</span>, 'data'<span>);
</span><span>27</span> <span>        }
</span><span>28</span>         <span>return</span> ''<span>;
</span><span>29</span> <span>    }
</span><span>30</span>     
<span>31</span>     <span>//</span><span> 清除会话中的数据,当调用session_destroy()函数,或者调用 session_regenerate_id()函数并且设置 destroy 参数为 TRUE 时,会调用此回调函数。</span>
<span>32</span>     <span>public</span> <span>function</span> destroy(<span>$session_id</span><span>) {
</span><span>33</span>         <span>if</span>(<span>$this</span>->redis->exists(<span>$this</span>->prefix.<span>$session_id</span><span>)) {
</span><span>34</span>             <span>return</span> <span>$this</span>->redis->del(<span>$this</span>->prefix.<span>$session_id</span>) > 0 ? <span>true</span> : <span>false</span><span>;
</span><span>35</span> <span>        }
</span><span>36</span>         <span>return</span> <span>true</span><span>;
</span><span>37</span> <span>    }
</span><span>38</span>     
<span>39</span>     <span>//</span><span> 垃圾回收函数,调用周期由 session.gc_probability 和 session.gc_divisor 参数控制</span>
<span>40</span>     <span>public</span> <span>function</span> gc(<span>$maxlifetime</span><span>) {
</span><span>41</span>         <span>$allKeys</span> = <span>$this</span>->redis->keys("{<span>$this</span>->prefix}*"<span>);
</span><span>42</span>         <span>foreach</span>(<span>$allKeys</span> <span>as</span> <span>$key</span><span>) {
</span><span>43</span>             <span>if</span>(<span>$this</span>->redis->exists(<span>$key</span>) && <span>$this</span>->redis->hGet(<span>$key</span>, 'expires') + <span>$maxlifetime</span> < <span>time</span><span>()) {
</span><span>44</span>                 <span>$this</span>->redis->del(<span>$key</span><span>);
</span><span>45</span> <span>            }
</span><span>46</span> <span>        }
</span><span>47</span>         <span>return</span> <span>true</span><span>;
</span><span>48</span> <span>    }
</span><span>49</span> <span>}
</span><span>50</span> 
<span>51</span> <span>//</span><span> 调用自定义的session处理方法</span>
<span>52</span> <span>$handler</span> = <span>new</span><span> Session_custom();
</span><span>53</span> <span>session_set_save_handler</span><span>(
</span><span>54</span>     <span>array</span>(<span>$handler</span>, 'open'),
<span>55</span>     <span>array</span>(<span>$handler</span>, 'close'),
<span>56</span>     <span>array</span>(<span>$handler</span>, 'read'),
<span>57</span>     <span>array</span>(<span>$handler</span>, 'write'),
<span>58</span>     <span>array</span>(<span>$handler</span>, 'destroy'),
<span>59</span>     <span>array</span>(<span>$handler</span>, 'gc'<span>)
</span><span>60</span> <span>);
</span><span>61</span> 
<span>62</span> <span>//</span><span> 下面这行代码可以防止使用对象作为会话保存管理器时可能引发的非预期行为,表示当脚本执行之后或调用exit()之后,存储当前会话数据并关闭当前会话</span>
<span>63</span> <span>register_shutdown_function</span>('session_write_close'<span>);
</span><span>64</span> 
<span>65</span> <span>session_start</span><span>();
</span><span>66</span> 
<span>67</span> <span>//</span><span> 可以使用session了</span>
Copy after login

补充:

php.ini文件中的session.gc_probability与session.gc_divisor两个配置选项共同决定gc函数调用的时机。默认值分为为1和1000,表示每个请求只有1/1000的机会调用gc函数。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use PHP to implement efficient and stable SSO single sign-on How to use PHP to implement efficient and stable SSO single sign-on Oct 15, 2023 pm 02:49 PM

How to use PHP to achieve efficient and stable SSO single sign-on Introduction: With the popularity of Internet applications, users are faced with a large number of registration and login processes. In order to improve user experience and reduce user registration and login intervals, many websites and applications have begun to adopt single sign-on (Single Sign-On, referred to as SSO) technology. This article will introduce how to use PHP to implement efficient and stable SSO single sign-on and provide specific code examples. 1. SSO single sign-on principle SSO single sign-on is an identity authentication solution

GitLab permission management and single sign-on integration tips GitLab permission management and single sign-on integration tips Oct 21, 2023 am 11:15 AM

GitLab's permission management and single sign-on integration tips require specific code examples Overview: In GitLab, permission management and single sign-on (SSO) are very important functions. Permission management can control users' access to code repositories, projects, and other resources, while single sign-on integration can provide a more convenient user authentication and authorization method. This article will introduce how to perform permission management and single sign-on integration in GitLab. 1. Permission Management Project Access Permission Control In GitLab, projects can be set to private

How to design a secure MySQL table structure to implement single sign-on function? How to design a secure MySQL table structure to implement single sign-on function? Oct 31, 2023 am 08:33 AM

How to design a secure MySQL table structure to implement single sign-on function? With the development of the Internet, it has become a common situation for users to log in to different accounts in different applications. In order to improve user experience and convenience, Single Sign-On (SSO) technology came into being. SSO technology allows users to access multiple applications through one login, avoiding the trouble of frequently entering accounts and passwords. Designing a secure MySQL table structure to implement single sign-on function

How to do single sign-on using PHP and OAuth How to do single sign-on using PHP and OAuth Jul 29, 2023 pm 12:37 PM

How to use PHP and OAuth for single sign-on In modern websites and applications, single sign-on (SingleSign-On, referred to as SSO) has become a very important feature. It allows users to access multiple systems with just one login, greatly improving user experience and work efficiency. This article will introduce how to implement single sign-on using PHP and OAuth protocol. 1. Introduction to OAuth OAuth is an open standard authorization protocol that allows users to authorize third-party application access.

Let's talk about how to implement single sign-on (SSO) based on Node Let's talk about how to implement single sign-on (SSO) based on Node Dec 06, 2022 pm 07:49 PM

What is single sign-on? What is the principle? How to achieve it? The following article will take you through single sign-on and talk about how to use Node to implement single sign-on SSO. I hope it will be helpful to you!

Design practice of SSO single sign-on system based on Swoole Design practice of SSO single sign-on system based on Swoole Jun 14, 2023 pm 04:08 PM

With the rapid development of the Internet, more and more websites and applications need to implement user single sign-on (Single Sign-On, SSO) functions to provide a more convenient and secure user experience. In this context, the SSO single sign-on system based on Swoole has gradually become a hot topic in the industry. This article will introduce how to design and implement a SSO single sign-on system based on Swoole. 1. SSO single sign-on system design idea The purpose of the SSO single sign-on system is to enable users to log in to a system.

In-depth understanding of the working principle and technical mechanism of PHP SSO single sign-on In-depth understanding of the working principle and technical mechanism of PHP SSO single sign-on Oct 15, 2023 am 09:19 AM

Deeply understand the working principle and technical mechanism of PHPSSO single sign-on. With the rapid development of the Internet, the number of various websites and applications is also increasing. In order to access different websites and applications, users need to register different accounts and passwords respectively, which brings inconvenience and annoyance to users. In order to solve this problem, Single Sign-On (SSO) came into being. SSO is an authorization and authentication system that allows users to seamlessly access multiple systems after they successfully log in. This article will provide an in-depth understanding of P

How to use PHP functions to implement single sign-on and permission verification for user login and logout? How to use PHP functions to implement single sign-on and permission verification for user login and logout? Jul 26, 2023 pm 07:02 PM

How to use PHP functions to implement single sign-on and permission verification for user login and logout? With the development of the Internet, more and more websites or applications require users to log in to obtain more personalized services or improve user experience. For multiple websites or applications, if each requires separate login and permission verification, it will cause inconvenience to users. Therefore, the concept of Single Sign-On (SSO) came into being. This article will introduce how to use PHP functions to implement single sign-on and permission verification, and provide relevant

See all articles