Some very strange problems often occur in sessions in PHP. Many of these problems are small details. It may be difficult for PHP beginners to find out what the reasons are. Today we have listed almost all the problems caused or caused by sessions. The problems are collected together and the solutions are given one by one. Students in need can take a look. If there are better friends, they can provide them to me.
1>Error message
The code is as follows | Copy code | ||||
Warning: Cannot send session cookie - headers already sent
|
代码如下 | 复制代码 |
Warning: open(F:/webphpsessiondatasess_76666aecf239891edc98b5, O_RDWR) failed |
The code is as follows | Copy code |
Warning: open(F:/webphpsessiondatasess_76666aecf239891edc98b5, O_RDWR ) failed
|
代码如下 | 复制代码 |
session.save_path和session.cookie_path 设置置为 session_save_path = c:temp session.cookie_path = c:temp |
The code is as follows | Copy code |
session.save_path and session.cookie_path settings are set to
session_save_path = c:temp |
代码如下 | 复制代码 |
错误提示 Warning: Trying to destroy uninitialized session in |
3>
代码如下 | 复制代码 |
echo SID; |
The code is as follows | Copy code |
echo SID; |
5> There is no output before calling the header function. Although I include a config.php file, there is no output in the config.php file. Why does the session still report the same error as question 1? Well, is it because I used session_start() before the header?
I carefully checked your PHP program and found that there is indeed no output before referencing header(), and there is no output in your include file!
But do you use the cursor keys to move the check after the end statement of the PHP code?>? Then you will find that after ?>, there is a blank line or a few spaces. If you delete these blank lines or spaces, the problem will be solved.
Note: This problem will appear in PHP4.1.2.
6> After using session to log in to the main page, how can I use session to restrict login on other pages? . .
Solution:
The code is as follows | Copy code | ||||||||
session_start();
echo "You are not logged in";
|
7> Use session_register() to register the session variable. However, when using header or JavaScript redirection statement, the variable value registered by the session cannot be accessed in the following page.
Program snippet in question:
The code is as follows | Copy code | ||||||||
session_start(); $ok = ‘love you’;
header("location : next.php");
session_start(); |
代码如下 | 复制代码 |
session_start(); $username = ‘;stangly.wrong’;; session_register(’;username’;); echo $HTTP_SESSION_VARS['username']; echo ‘; ’;; echo _SESSION['username']; ?> 10> |
The code is as follows | Copy code |
header("Location: next.php" . "?" .SID); |
The code is as follows | Copy code |
session_register('data';); data=array(1,2,3,4); |
The code is as follows | Copy code |
session_start();<🎜>
$username = ‘;stangly.wrong’;;<🎜>
session_register(’;username’;);<🎜>
echo $HTTP_SESSION_VARS['username'];<🎜>
echo ‘; ’;; echo _SESSION['username']; ?> 10> |
What is the difference between session_unregister() and session_destroy()?
The main function of the session_unregister() function is to unregister the current session variable. However, it should be noted that if you use HTTP_SESSION_VARS or _SESSION to reference the session variable in the current page, then you may need to cooperate with unset() to unset the session variable.
And session_destroy() clears the current session environment. This means that after you use the session_destroy() function, it is no longer possible to use session_is_registered() to detect session variables. But it should be noted that it cannot clear the session in the global or use the session cookie. So before using session_destroy, it is best not to use HTTP_SESSION_VARS _SESSION to access the session.
Routine:
The code is as follows
|
Copy code | ||||
if(isset(_COOKIE[session_name()] )) { |
unset(_COOKIE[session_name()]);
www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632247.htmlTechArticleSome strange problems often occur in sessions in php. Many of these problems are small details. For php It may be difficult for beginners to discover the reason. Today we have put together almost everything...