How to output error message in php

王林
Release: 2023-03-04 13:16:02
Original
4818 people have browsed it

How to output error information in php: first open the php.ini configuration file; then modify the configuration [display_errors = On] to enable error prompts; finally modify the configuration [log_errors = On] to enable logging error information.

How to output error message in php

The method is as follows:

(Recommended tutorial: php graphic tutorial)

By modification php.ini configuration file to output error information

;显示错误信息  
display_errors = On  
;显示php开始错误信息  
display_startup_errors = On  
;日志记录错误信息  
log_errors = On
Copy after login

(Video tutorial recommendation: php video tutorial)

Use the ini_set() function to output error information

ini_set('display_errors',1);    //错误信息  
ini_set('display_startup_errors',1);    //php启动错误信息  
error_reporting(-1);    //打印出所有的 错误信息  
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');    //将出错信息输出到一个文本文件
Copy after login

The above is the detailed content of How to output error message in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!