首页  >  文章  >  后端开发  >  意外的头部空白行或输出和Cookie设置问题_PHP教程

意外的头部空白行或输出和Cookie设置问题_PHP教程

WBOY
WBOY原创
2016-07-13 17:43:38962浏览

PHP setcookie() or PHP header(‘Location:’) Not Working – With SolutionThe setcookie() or header() functions of PHP does not work at all!

The PHP setcookie() and header() should be called before ANY browser output. If there are any echo or print calls, or any accidental whitespaces, those functions just won’t work. If it works on your localhost (strangely it does under some conditions!) but not on your server, check for the no-output-before-headers violations and fix them to get them working.

Explanation
HTTP headers should be sent before any HTTP content, else they will not work. The PHP header() function is used for sending standard as well as custom HTTP headers, so naturally they should be called before any browser output. setcookie() is a wrapper function to header(‘Set-Cookie:’), so ultimately it’s a header() call, so setcookie() too will not work if it’s called after any browser output.

Notes

The PHP header() function is used for sending standard as well as custom HTTP headers
header() should be called before any browser output
setcookie() should be called before any browser output
setcookie() is a wrapper function to header(‘Set-Cookie:’)
html">http://www.hacksparrow.com/php-setcookie-or-php-headerlocation-not-working-with-solution.html

额外提示:

这是为什么最好不要在PHP文件的末尾使用关闭符号

    

        echo hello world;

     ?>

的原因,因为很可能在这个关闭行之外输入以外的空白行、空白符

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478817.htmlTechArticlePHP setcookie() or PHP header(‘Location:’) Not Working – With SolutionThe setcookie() or header() functions of PHP does not work at all! The PHP setcookie() and header() shou...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn