用php显示错误

时间:2013-10-09 10:14:05

标签: php

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

2 个答案:

答案 0 :(得分:1)

你可以试试。

的error_reporting(E_ALL);
ini_set(“display_errors”,1);

答案 1 :(得分:0)

把它放在你的php页面上。

 error_reporting(E_ALL);
 ini_set("display_errors", 1);