关于使用session_start出现的headers _PHP教程
程序员文章站
2022-05-15 07:55:22
...
请看详细的错误程序和输出结果
echo "testing ... ";
session_start();
?>
输出为
testing ...
Warning: Cannot send session cookie - headers already sent by (output started at F:php2000test.php:2) in F:php2000test.php on line 4
Warning: Cannot send session cache limiter - headers already sent (output started at F:php2000test.php:2) in F:php2000test.php on line 4
分析:
主要原因,php.ini里有关于session 的定义,默认是使用 cookie
[session]
session.use_cookies = 1 ; whether to use cookies
这句表明使用 cookies 存储session 而 cookies的设置必须在正式 htm 之前,也就是只能在 header 里面才行,所以造成这个错误的发生
我们修改程序为
echo "testing ... ";
session_start();
?>
同样错误,因为 echo 已经输出了
我们修改程序为
$i=1;
session_start();
?>
运行正确表明在session_start的前面可以有计算语句,但是不能有输出语句
我尝试过修改
session.use_cookies = 0 ; whether to use cookies
但是没有成功,希望知道答案的朋友通知我,如何去掉cookie方式的 session
echo "testing ... ";
session_start();
?>
输出为
testing ...
Warning: Cannot send session cookie - headers already sent by (output started at F:php2000test.php:2) in F:php2000test.php on line 4
Warning: Cannot send session cache limiter - headers already sent (output started at F:php2000test.php:2) in F:php2000test.php on line 4
分析:
主要原因,php.ini里有关于session 的定义,默认是使用 cookie
[session]
session.use_cookies = 1 ; whether to use cookies
这句表明使用 cookies 存储session 而 cookies的设置必须在正式 htm 之前,也就是只能在 header 里面才行,所以造成这个错误的发生
我们修改程序为
echo "testing ... ";
session_start();
?>
同样错误,因为 echo 已经输出了
我们修改程序为
$i=1;
session_start();
?>
运行正确表明在session_start的前面可以有计算语句,但是不能有输出语句
我尝试过修改
session.use_cookies = 0 ; whether to use cookies
但是没有成功,希望知道答案的朋友通知我,如何去掉cookie方式的 session
上一篇: 编码的秘密(python版)
推荐阅读
-
关于使用PLSQL Developer时出现报错ora-12514的问题
-
ios打包的关于xcodebuild和xctool的使用教程
-
关于使用findViewById查找WebView控件出现id名字没错却是红色报错的问题
-
使用PHP header进行页面跳转出现的问题解疑_PHP教程
-
关于zend studio 出现乱码问题的总结_PHP教程
-
idea的使用之关于tomcat热部署的教程
-
关于php读mysql数据库时出现乱码的解决方法,mysql乱码_PHP教程
-
关于使用session_start出现的headersalreadysent错误的解释
-
详细说明在vue2中使用axios解决http请求出现的问题(详细教程)
-
关于快速操作使用的教程实例