gpt4 book ai didi

php - error_reporting(E_ALL) 不会产生错误

转载 作者:IT王子 更新时间:2023-10-29 01:00:09 28 4
gpt4 key购买 nike

这是我的 PHP 脚本 -

<?php
error_reporting(E_ALL);
echo('catch this -> ' ;. $thisdoesnotexist);
?>

如果要执行,显然应该显示一些东西。

我看到的只是一个空白页面。为什么 error_reporting(E_ALL) 不起作用?

<?php
ini_set("display_errors", "1");
error_reporting(E_ALL);
echo('catch this -> ' ;. $thisdoesnotexist);
?>

也无济于事。我得到的只是一个空白页面。

我去过 php.ini 并设置 display_errors = Ondisplay_startup_errors = On。什么都没有发生。

最佳答案

您的文件有语法错误,因此您的文件未被解释,因此设置未更改,您有一个空白页面。

您可以将文件分成两部分:

文件 index.php

<?php
ini_set("display_errors", "1");
error_reporting(E_ALL);
include 'error.php';

文件 error.php

<?
echo('catch this -> ' ;. $thisdoesnotexist);

关于php - error_reporting(E_ALL) 不会产生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16933606/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com