php.ini error prompts include: 1. Turn on display errors, the code is [display_errors = On]; 2. [E_ALL] is all errors and warnings; 3. [E_ERROR] is fatal runtime Error; 4. [E_WARNING] is a runtime warning.
What are the php.ini error prompts:
display_errors = On
//Turn on display error
error_reporting
The parameters that can be set are as follows:
Error reporting is a bit field. You can add up the numbers to get the desired level of error reporting.
E_ALL – All errors and warnings (excluding E_STRICT)
E_ERROR – Fatal runtime errors
E_WARNING – Run-time warning (non-fatal error)
E_PARSE – Compile-time parsing error
E_NOTICE – Run (These are often caused by bugs in your code, but can also be caused by intentional actions.)
E_STRICT – Coding standardization warnings, allowing PHP to suggest how to modify the code to ensure Optimal interoperability and forward compatibility.
E_CORE_ERROR - Fatal error during PHP startup initialization
E_CORE_WARNING - Warning (non-fatal error during PHP startup initialization) )
E_COMPILE_ERROR - Compile-time fatal error
E_COMPILE_WARNING - Compile-time warning (non-fatal error)
E_USER_ERROR – User-defined error message
E_USER_WARNING – User-defined warning message
E_USER_NOTICE – User-defined The reminder message
is basically set to:
error_reporting = E_ALL & ~E_NOTICE ;
In addition to prompts, all errors are displayed.
Example:
error_reporting = E_ALL & ~E_NOTICE ; 显示所有的错误,除了提醒
error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; 仅显示编译时致命性错误
error_reporting=E_ERROR :只会报告致命性错误
In the php program, the setting for error_reporting
is written as follows:
error_reporting(E_ALL);
//or other versions
1 E_ERROR Fatal runtime error
2 E_WARNING Runtime warning (non-fatal error)
4 E_PARSE Compilation time parsing error
8 E_NOTICE runtime reminder (often a bug, it may be intentional)
16 E_CORE_ERROR PHP initialization at startup Fatal error in the process
32 E_CORE_WARNING Warning (non-fatal error) in the initialization process when PHP starts up
64 E_COMPILE_ERROR Fatal during compilation Sexual error
128 E_COMPILE_WARNING Compile time warning (non-fatal error)
256 E_USER_ERROR User-defined fatal error
512 E_USER_WARNING User-defined warning (non-fatal error)
1024 E_USER_NOTICE User-defined reminder (often a bug, it may be intentional)
2048 E_STRICT Encoding standardization warning (recommended how to modify for forward compatibility)
4096 E_RECOVERABLE_ERROR Near-fatal runtime error, if not Capture is treated as E_ERROR
- ## 6143 E_ALL All errors except E_STRICT (8191 in PHP6, including all)
# Relevant learning recommendations:php programming (video)
The above is the detailed content of What are the php.ini error messages?. For more information, please follow other related articles on the PHP Chinese website!

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v


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

Dreamweaver CS6
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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

Atom editor mac version download
The most popular open source editor
