Home Backend Development PHP Problem How to set php not to display notice warning

How to set php not to display notice warning

Sep 26, 2021 am 09:54 AM
php

How to set php not to display notice warning: 1. Use "ini_set("display_errors", 0); to shield errors; 2. Open the php.ini file and change the value of "display_errors" from on to Just turn it off.

How to set php not to display notice warning

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer.

How to set php not to display notice warning?

Solution to PHP display Warning and Notice issues

##After PHP is installed, error reporting, The emergence of reminders, warnings, etc., allows us to understand the problems in the program in a timely manner when debugging the PHP program. Then, sometimes we don’t need reminders, warnings, etc. For example, when we use PHP5.5 (or higher) and use the older MySql connection method with the MySql development environment, PHP will prompt: Please use the latest MySql connection method. When you use it to read database content and return it to the front desk as json format (or other), an error will often occur in the content.

How to block this error Well, the methods are as follows:

1. Add a shielding error reminder on the page where a reminder, error, or warning may (or has) occurred:

error_reporting(E_ALL ^ ​​E_DEPRECATED);

//In this version

php5.5, it is no longer recommended to use the old mysqlConnection method

//But speedPHP still uses the old connection method. At this time, php will report an E_deprecated prompt. Turn off the prompt and it will be OK. You can also put

//php in deployment mode (non-development mode), but the best solution is to use the latest speedPHP

Generally you can also use the following content to solve some notice warning and other problems

## ini_set("display_errors", 0);

error_reporting(E_ALL ^ ​​E_NOTICE );

error_reporting(E_ALL ^ ​​E_WARNING);

2. Open the php.ini file and find the relevant settings (as shown below) ), change on to off to block errors (this method is not recommended):

Sometimes the display_errors of php.ini is still modified. If it doesn’t work, then refer to the following method:

Modify php.ini and change display_errors = On to display_errors = Off, but the result still doesn’t work. After Baidu checked, it turns out that it needs to be set in php-fpm.conf.

Open php-fpm.conf and find:

##                                                                 ;/usr/sbin/sendmail -t -i

0

Just change the value from 1 to 0.

3. This method is very suitable for those projects that have decided to use a method that will definitely cause reminders or warnings. Block it once and for all:

First refer to 2, find the location of the relevant display_errors, change Off to On

Then find the location in the picture below, modify the level you need to report errors, or the level you do not need to report

The error reporting levels referred to are as follows:

Definition and usage:

error_reporting() sets PHP's Report the error level and return the current level.

Function syntax:

error_reporting(report_level)

If the parameter level is not specified, the current The error level will be returned. The following are possible values ​​for level:

Value Constant Description

1 E_ERROR Fatal runtime error. The error cannot be recovered and execution of the script is suspended.

2 E_WARNING Runtime warning (non-fatal error). Non-fatal runtime error, script execution will not stop.

4 E_PARSE compile-time parsing error. Parsing errors are generated only by the parser.

8 E_NOTICE runtime reminder (these are often caused by bugs in your code, or may be caused by intentional behavior.)

16 E_CORE_ERROR Fatal error during initialization process when PHP starts.

32 E_CORE_WARNING Warning (non-fatal error) during the initialization process when PHP starts.

64 E_COMPILE_ERROR Fatal error during compilation. This is like an E_ERROR being generated by the Zend scripting engine.

128 E_COMPILE_WARNING compile-time warning (non-fatal error). This is like an E_WARNING warning generated by the Zend script engine.

256 E_USER_ERROR User-defined error message. This is like a user-defined warning message by using PHP function trigger_error (programmer sets E_ERROR)

512 E_USER_WARNING. This is like a user-defined reminder message using the PHP function trigger_error (an E_WARNING warning set by the programmer)

1024 E_USER_NOTICE. This is like a standardized warning encoded by

2048 E_STRICT using the PHP function trigger_error (the programmer sets an E_NOTICE). Allows PHP to suggest how to modify the code to ensure optimal interoperability and forward compatibility.

4096 E_RECOVERABLE_ERROR Fatal error in capturing. This is like an E_ERROR, but can be caught by user-defined handler (see also set_error_handler())

8191 E_ALL All errors and warnings (excluding E_STRICT) (E_STRICT will be part of E_ALL as of PHP 6.0)

Example:
Any number of the above options can be connected with "OR" (using OR or |), so that it can be reported All required bugs at all levels.
For example, the following code turns off user-defined errors and warnings, performs certain operations, and then returns to the original error level:

<?php
//禁用错误报告
error_reporting(0);
 
//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);
 
//报告所有错误
error_reporting(E_ALL);
?>
Copy after login

Recommended study: "PHP Video Tutorial"

The above is the detailed content of How to set php not to display notice warning. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles