session Cannot send session cache limiter 错误提示_PHP教程
程序员文章站
2024-04-03 11:18:46
...
session cannot send session cache limiter 错误提示
开始时经常会碰到如下提示
warning: session_start() [function.session-start]: cannot send session cache limiter - headers already sent (output started at e:php教程www.bKjia.c0madmin.php:1) in e:phpwww.bKjia.c0mlogolistadminlogo.php on line 2
这是提供session前面己经有输出了,我们只要把session_start()放在最前面,同时最了为避免出错提供可以在前面加@,如@session_start();这样就可以了。
同时也可以在php.ini中修改session.auto_start = 0 为 session.auto_start = 1
就可以了。
上一篇: 实现tcp的自动重连实例教程
下一篇: curl模拟登陆什么意思?该怎么解决
推荐阅读
-
session Cannot send session cache limiter 错误提示_PHP教程
-
解决php中Cannot send session cache limiter 的问题的方法_PHP教程
-
php session_start()关于Cannot send session cache limiter
-
php Cannot modify header information 跟 Cannot send session cache limiter
-
解决php中Cannot send session cache limiter 的有关问题
-
php session_cache_limiter session_cache_expire等函数_PHP教程
-
php session_start()关于Cannot send session cache limiter - hea_PHP教程
-
解决php中Cannot send session cache limiter 的有关问题
-
解决php中Cannot send session cache limiter 的问题的方法_PHP教程
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法