Home>Article>Backend Development> How to write error log to file in php
php method to write the error log to a file: 1. In the configuration file php.ini, search for the "error_log" item and configure the path of the log file; 2. Use the error_log() function to write the error log In the configured log file, the syntax is "error_log (error information to be recorded, 0);".
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
If you want to use your own designated file to record error logs , be sure to ensure that this file is stored outside the document root directory to reduce the possibility of being attacked. And the file must give the PHP script write permission. Assume that in the Linux operating system, the error.log file in the /usr/local/ directory is used as the error log file, and the web server process user is set to have write permissions. Then in the PHP configuration file, set the value of the error_log directive to the absolute path of the error log file.
You need to modify the configuration instructions in php.ini as follows:
error_reporting = E_ALL // 将会向PHP报告发生的每个错误 display_errors = Off // 不显示满足上条 指令所定义规则的所有错误报告 log_errors = On // 决定日志语句记录的位置 log_errors_max_len = 1024 // 设置每个日志项的最大长度 error_log = E:/php_log/php_error.log // 指定产生的错误报告写入的日志文件位置
After the PHP configuration file is set as above, restart the web server. In this way, when executing any PHP script file, all error reports generated will not be displayed in the browser, but will be recorded in the error log E:/php_log/php_error.log specified by you.
In addition, not only can all errors that meet the rules defined by error_reporting be recorded, but the error_log() function in PHP can also be used to send error information to the error log of the web server or to a file.
The prototype of the error_log() function is as follows:
error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_headers ]]] ) : bool
The parameter description is as follows:
[Example] Take logging in to the Mysql database as an example, and log an error message when the login fails.
Running the above code will generate the corresponding error log file in the directory set by the error_log item in the php.ini configuration file. The content of the file is as follows:
[08-May-2020 13:17:31 PRC] PHP Warning: mysqli_connect(): (HY000/1045): Access denied for user 'my_user'@'localhost' (using password: YES) in D:\WWW\index.php on line 2 [08-May-2020 13:17:31 PRC] Mysql 数据库连接失败!
Recommended learning: "PHP video tutorial》
The above is the detailed content of How to write error log to file in php. For more information, please follow other related articles on the PHP Chinese website!