0

我在这里阅读了很多关于此的帖子,但没有发现任何对我有用的帖子!我需要在一个站点的浏览器上显示 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 -->
4

2 回答 2

1

你可以试试。

错误报告(E_ALL);
ini_set("display_errors", 1);

于 2013-10-09T10:17:37.667 回答
0

把它放在你的 php 页面的顶部。

 error_reporting(E_ALL);
 ini_set("display_errors", 1);
于 2013-10-09T10:18:11.820 回答