关于使用session_start出现的headers 
程序员文章站
2024-01-11 17:33: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
上一篇: PHP实现文件上传的思路及实例
推荐阅读
-
关于使用session_start出现的headers 
-
php的RETURN_STRINGL为什么使用静态字符串会出现Segmentation fault
-
关于PHP结束标签的使用细节探讨及联想
-
MySQL中使用group by 是总是出现1055的错误(推荐)
-
关于使用key/value数据库redis和TTSERVER的心得体会_PHP教程
-
关于angular 8.1使用过程中的一些记录
-
Android项目——关于GitHub和GitBase的使用问题
-
有没有关于HTMLPurifier使用的详细点资料呢?
-
使用unset()时出现的异常如何解决
-
使用cURL想接口发送数据,出现等待相应的时间很长的现象,怎么解决。