session Cannot send session cache limiter 错误提示_PHP教程
程序员文章站
2022-05-05 10:26:43
...
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
就可以了。
推荐阅读
-
解决php中Cannot send session cache limiter 的问题的方法
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法
-
php Cannot send session cookie-headers already sent by的解决方法_PHP教程
-
php提示Failed to write session data错误_PHP教程
-
php使用session提示Cannot send session cache
-
php使用session提示Cannot send session cache
-
php Cannot modify header information 跟 Cannot send session cache limiter
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法_php技巧
-
PHP session错误提示与调试_PHP教程
-
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法_php技巧