


Make the PHP session never expire. You may not have encountered such a depressing problem, but I have encountered it and it was very depressing.
We developed a system in the early stage that can only be used by the company's customer service personnel - a limited number of customer service personnel. It was these limited customer service staff who suddenly raised this question a few days ago: every very short period of time (half an hour without operating the page), when we were anxious to solve the customer's problem, the system prompted that we needed to log in, which was delayed. Client’s time… This is not fun!
Customer is God, the only God. So the boss asked us to realize that the session in PHP never expires, unless our customer service staff artificially lets it expire. I don't understand this never-expiration behavior for security reasons; I really don't want to modify the previous program for laziness reasons. But there is no way, I still need to change.
The best way is not to modify the program, because if you modify the program, the testing department will be very depressed like me. Then you can only modify the system environment configuration. It is actually very simple. Open the php.ini setting file and modify the three lines as follows :
1. session.use_cookies
Set this value to 1 and use cookies to pass sessionid
2. session.cookie_lifetime
This represents the time that the SessionID is stored in the client cookie. The default is 0, which means that the SessionID will be invalidated as soon as the browser is closed... It is because of this that the PHP session cannot be used permanently! Then we set it to a value that we think is very large. The number, how about 999999999, okay! That’s it.
3. session.gc_maxlifetime
This is the time that the Session data is stored on the server side. If this time is exceeded, the Session data will be automatically deleted! Then we also set it to 99999999.
That's it, everything is ok. Of course, if you don't believe it, just test it and see - set up a session and come back after 10 days and a half. If your computer does not lose power or crash, you will still You can see this sessionid.
Of course, it is also possible that you do not have permission to control the server and are not as lucky as me to be able to modify the php.ini settings. There is a way to rely on ourselves. Of course, we must use the client to store cookies, and get the sessionID Store it in the client's cookie, set the value of this cookie, and then pass this value to the session_id() function. The specific method is as follows:
<ol class="dp-c"> <li class="alt"><span><span><?php </span></span></span></li> <li> <span>session_start(); </span><span class="comment">// 启动Session </span><span> </span> </li> <li class="alt"> <span class="vars">$_SESSION</span><span>[</span><span class="string">count</span><span>]; </span><span class="comment">// 注册Session变量Count </span><span> </span> </li> <li> <span>isset(</span><span class="vars">$PHPSESSID</span><span>)?session_id(</span><span class="vars">$PHPSESSID</span><span>):</span><span class="vars">$PHPSESSID</span><span> = session_id(); </span> </li> <li class="alt"> <span class="comment">// 如果设置了$PHPSESSID,就将SessionID赋值为$PHPSESSID,否则生成SessionID </span><span> </span> </li> <li><span> </span></li> <li class="alt"> <span class="vars">$_SESSION</span><span>[</span><span class="string">count</span><span>]++; </span><span class="comment">// 变量count加1 </span><span> </span> </li> <li> <span>setcookie(</span><span class="string">PHPSESSID</span><span>, </span><span class="vars">$PHPSESSID</span><span>, time()+3156000); </span><span class="comment">// 储存SessionID到Cookie中 </span><span> </span> </li> <li class="alt"> <span class="func">echo</span><span> </span><span class="vars">$count</span><span>; </span><span class="comment">// 显示Session变量count的值 </span><span> </span> </li> <li><span>?> </span></li> </ol>
If you come back and refresh this page after a long time (how long? You can see for yourself), and the output number is 1 larger than when you left, then you are right! If it is much larger, it is estimated that someone touched your computer. This The first test is not accurate, haha... go out again for a while!
Note: The 'PHPSESSID' in the setcookie line is not certain. If you encounter a network administrator who suffers from modification mania, he may have modified it. The best way is to use phpinfo() Take a look at this function and confirm the value of session.name, which is more scientific.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
