php显示错误信息方法
作者:075玩 时间:2023-03-22 21:03:21

  我们在浏览一些论坛的时候会经常遇到打开网页是空白的情况,其实是由于php在运行过程中遇到错误信息而致,如果想知道那个环节出了问题就得让php显示错误信息。大家可以参考下面php显示错误信息的方法。
  一、通过配置 php.ini 中的参数设置PHP的报错级别
  可以在 php.ini 中适当的位置增加一行
  error_reporting = E_ALL
  CODE: [COPY]
  
  error_reporting = E_ALL

  注: php.ini 中实现给出了一些例子,比如我本地的 php.ini 中就有如下

  ; Examples:

  ; - Show all errors, except for notices and coding standards warnings

  ;error_reporting = E_ALL & ~E_NOTICE

  ; - Show all errors, except for notices

  ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT

  ; - Show only errors

  ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR

  ; - Show all errors except for notices and coding standards warnings

  ;error_reporting = E_ALL & ~E_NOTICE

  CODE: [COPY]

  

; Examples:

; - Show all errors, except for notices and coding standards warnings

;error_reporting = E_ALL & ~E_NOTICE

; - Show all errors, except for notices

;error_reporting = E_ALL & ~E_NOTICE | E_STRICT

; - Show only errors

;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR

; - Show all errors except for notices and coding standards warnings

;error_reporting = E_ALL & ~E_NOTICE

  我只要在这些行代码的下面增加 error_reporting = E_ALL 然后重新启动 web 服务就可以了

  二、通过 PHP 函数 error_reporting 设定 PHP 报错级别

  如果你无权修改 php.ini 中的参数配置,你可以通过这个函数来设置报错级别。

  error_reporting() 函数使用方法

  error_reporting(report_level)

  如果参数 level 未指定,当前报错级别将被返回。

  任意数目的以上选项都可以用“或”来连接(用 OR 或 |),这样可以报告所有需要的各级别错误。例如,下面的代码关闭了用户自定义的错误和警告,执行了某些操作,然后恢复到原始的报错级别:

  //禁用错误报告

  error_reporting(0);

  //报告运行时错误

  error_reporting(E_ERROR | E_WARNING | E_PARSE);

  //报告所有错误

  error_reporting(E_ALL);

  CODE: [COPY]

  

//禁用错误报告

error_reporting(0);

//报告运行时错误

error_reporting(E_ERROR | E_WARNING | E_PARSE);

//报告所有错误

error_reporting(E_ALL);

  那么我们就可以把论坛里的 include/common.inc.php文件里的

  error_reporting(0);

  CODE: [COPY]

  

error_reporting(0);

  修改成

  error_reporting(E_ALL);

  CODE: [COPY]

  

error_reporting(E_ALL);

  然后保存,这样就可以看到 PHP 报告的错误信息了

合集推荐对战竞技游戏排行榜 更多+
竞技手游指的是以公平、公正、合理为主旨的对抗游戏,但大多数竞技游戏都是射击、策略、动作手游居多。随着中国游戏市场不断地扩大,消费群体的不断成熟,竞技类手机游戏不仅种类多样而且独具特色。竞技类手机游戏之所以这么受欢迎,也正是基于玩家们在竞技中
关注方法如下:

打开微信首页,点击【搜索】选中如下图【公众号】

搜索【075玩网】,点击关注

复制名字打开微信