Home > PHP Framework > ThinkPHP > body text

How to enable debugging mode in thinkphp5

Release: 2020-04-29 09:10:40
forward
9943 people have browsed it

How to enable debugging mode in thinkphp5

Method 1. Change the debugging mode to true in the configuration file config.php under the application

How to enable debugging mode in thinkphp5

Method 2. In Define the .env file under the ROOT_PATH directory of the application, and define the APP_DEBUG configuration parameter to replace the constant definition of the entry file. This makes it easy to set environment variables in the deployment environment to turn on and off debugging mode. (Note: After defining the .env file, the app_debug parameter defined in the configuration file is invalid.)

// 设置开启调试模式
app_debug =  true
Copy after login

How to enable debugging mode in thinkphp5

Debugging advantages:

1. Turn on logging, Any error messages and debugging information will be recorded in detail to facilitate debugging;

2. The entire execution process will be recorded in detail;

3. Template modifications can take effect immediately;

4. Record SQL logs to facilitate SQL analysis;

5. Use the Trace function to better debug and find errors;

6. When an exception occurs, detailed exception information will be displayed;

Recommended tutorial: "TP5"

The above is the detailed content of How to enable debugging mode in thinkphp5. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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!