Php enable and Disable Error prompt is applicable to php. ini modification permissions, error prompt php. ini
Windows system switch php error prompt
If you do not have the permission to modify php. ini, you can add the following code to the php file:
The Code is as follows:
Ini_set ("display_errors", "On ");
Error_reporting (E_ALL | E_STRICT );
Of course, you can modify php. ini as follows:
The Code is as follows:
Find display_errors = On and change it to display_errors = off.
Note: If you have copied the PHP. ini file to the windows directory, you must change display_errors = On in c: windows/php. ini to display_errors = off.
Solution for failure of display_errors = Off in PHP. ini
The method for enabling and disabling error messages in linux is similar, but I will introduce it to you in detail.
In linux
1. Open the php. ini file.
Take my ubuntu as an example. The file is in the/etc/php5/a (www.jb51.net) pache2 directory.
2. Search and modify the downstream, and change the Off value to On
The Code is as follows:
Display_errors = Off
3. Search downstream
The Code is as follows:
Error_reporting = E_ALL &~ E_NOTICE
Or search:
Error_reporting = E_ALL &~ E_DEPRECATED
Change
Error_reporting = E_ALL | E_STRICT
4. Modify httpd. conf of Apache,
Take my Ubuntu as an example. The file is in the/etc/apache2/directory. This is a blank file.
Add the following two lines:
The Code is as follows:
Php_flag display_errors on
Php_value error_reporting 2039
5. Restart Apache and you will be OK.
Restart command ::
The Code is as follows:
Sudo/etc/init. d/apache2 restart
How can I enable error prompt output in PHP?
Php. ini
Set display_errors = On to enable the error message, error_reporting = E_ALL &~ E_NOTICE: Set the error level. You can also
Ini_set ('display _ errors ', 1); // sets the enable error prompt.
Error_reporting ('e _ ALL &~ E_NOTICE '); // error level prompt
If php does not have '', an error is prompted. How can I set phpini?
This is an important syntax error.
If you want to block errors, add them to the PHP header.
Error_reporting (0 );
The statement can block the error prompt. However, if a PHP error occurs, you can only see a blank page in the browser.
In PHP. INI, find
Error_reporting
Set
Error_reporting = 0
Note that if there is a semicolon in front, remove the semicolon in front.
Don't forget to restart Apache or related web Services