我在这里阅读了很多关于此的帖子,但没有发现任何对我有用的帖子!我需要在一个站点的浏览器上显示 php 错误。所有其他网站不得。在我的 php.ini 中,我有
error_reporting = E_DEPRECATED & ~E_STRICT
和
display_errors = On
在我的 .htaccess 我有
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
我试着把
error_reporting(E_ALL);
在我的 php 脚本开始时我需要调试,但总是出错,有一个空白页,而不是错误。服务器上的日志文件中没有更多内容......我不明白如何显示这些错误......请问有什么想法吗?
[编辑] 我的 php 脚本的开始:
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include_once("config.php");
include_once("include/functions.php");
function main(){
global $link;
include("header.php");
echo '
<!-- Our Services -->