How to use php error log
The method to use the php error log is to first open the php configuration file; then modify the configuration [log_errors=On] to enable the error log; and finally restart the web server.
The operating environment of this article: windows10 system, php 7.3, thinkpad t480 computer.
If we want to use the error log, we first need to enable the error log. The specific method is as follows:
Edit the php.ini configuration file and make the following modifications:
error_reporting = E_ALL #将会向PHP报告发生的每个错误 display_errors = Off #不显示满足上条 指令所定义规则的所有错误报告,设置成off发生错误时,浏览器报500,不显示具体错误(具体错误不会输出到浏览器上,用户也就看不到。会写到第5步的错误文件中,非正式环境全设置成on更方便) log_errors = On #开启错误日志 log_errors_max_len = 1024 #设置每个日志项的最大长度 error_log =/usr/local/error.log #指定产生的 错误报告写入的日志文件位置
After the PHP configuration file is set as above, you need to 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 /usr/local/error.log specified by you. . In addition, not only can all errors that meet the rules defined by error_reporting be recorded, but also the error_log() function in PHP can be used to send a user-defined error message and be written to the error_log.
Free learning video sharing: Introduction to programming
The above is the detailed content of How to use php error log. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
