我使用相同的
PHP脚本包含和ajax加载.它是一些随机目录项,它们加载了页面,可以加载ajax.只有在通过ajax加载时我才需要使用header()函数.
当我使用头函数并且输出已经开始时,我得到关于它的PHP警告. PHP如何知道输出已经开始了?确定它的最佳方法是什么,而不是调用头函数?
谢谢.
http://php.net/manual/en/function.headers-sent.php
原文链接:https://www.f2er.com/php/135968.html// If no headers are sent,send one if (!headers_sent()) { header('...'); exit; }