How to remove error prompts in php: 1. Set "display_errors=Off" in php.ini; 2. Add the "error_reporting(E_ALL^E_NOTICE^E_WARNING);" statement to the PHP page to close PHP error message.
The operating environment of this article: Windows 7 system, PHP 7.1 version, DELL G3 computer
Remove warning, notice and other information from the php page
error_reporting Setting the error message reporting level
2047 I remember it should be E_ALL.
There are many configuration settings in the php.ini file. You should have set up your php.ini file and placed it in the appropriate directory, as documented in the instructions for installing PHP and Apache 2 on Linux (see Resources). When debugging PHP applications, there are two configuration variables that you should be aware of. Here are the two variables and their default values:
display_errors = Off error_reporting = E_ALL
E_ALL can tell you everything from bad coding practices to harmless tips to errors. E_ALL is a bit too detailed for the development process, because it also displays prompts on the screen for small things (such as variables not being initialized), which will mess up the browser's output
So it is not recommended to use 2047, it is better to The default value is changed to: error_reporting = E_ALL & ~E_NOTICE
Solution to the failure of display_errors = Off in PHP .ini
:
PHP settings file Display_errors = Off has been clearly set in php.ini, but during operation, error messages still appear on the web page.
Solution:
After checking log_errors=On, according to the official statement, when this log_errors is set to On, then the error_log file must be specified. If it is not specified or the specified file does not have permission to write, Then it will still be output to the normal output channel, which will invalidate the specified Off of display_errors, and the error message will still be printed. So set log_errors = Off and the problem is solved.
It is often seen that error_reporting (7) means: setting the level of error message reporting.
value constant 1 E_ERROR 2 E_WARNING 4 E_PARSE 8 E_NOTICE 16 E_CORE_ERROR 32 E_CORE_WARNING 64 E_COMPILE_ERROR 128 E_COMPILE_WARNING 256 E_USER_ERROR 512 E_USER_WARNING 1024 E_USER_NOTICE 2047 E_ALL 2048 E_STRICT
However, 7=1 2 4
means that when an error occurs, 1 E_ERROR 2 E_WARNING is displayed 4 E_PARSE
<?php //禁用错误报告 error_reporting(0); //报告运行时错误 error_reporting(E_ERROR | E_WARNING | E_PARSE); //报告所有错误 error_reporting(E_ALL); ?>
[Recommended learning: PHP Video Tutorial】
Attached:
Question:
Can I turn off PHP error prompts? I don't want others to see the errors in my program.
Answer:
Since the settings in PHP.ini are global, we cannot directly modify the global configuration information for an individual user, but you can adjust it through the error_reporting PHP function The error message output of the script you run, for example:
error_reporting(E_ALL^E_NOTICE^E_WARNING);
can turn off all notice and warning level errors.
Put this statement in the function include file of your script, usually config.php or conn.php to control the output.
The above is the detailed content of How to remove error message in php. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools