Turn on PHP Error Reporting (Tutorial)

2016 年 9 月 23 日3010

By Angela Bradley

If you are running into a white page or some other PHP error, but you have no clue what is wrong, you should consider turning on PHP error reporting. This will give you some indication of where or what the problem is. This is a good first step to solving your problem. Here is how to turn on :

To display caused by your you can include these lines of code:

ini_set('display_errors',1); 



error_reporting(E_ALL);

Another way to do it is to edit your php.ini file and include this option:

error_reporting = E_ALL

To turn error reporting off for a single document, include this line:

error_reporting(0);

Read more in depth about different types of error reporting available [view]

Help Out! Have a better way... share your code here... or view other's suggestions!

0 0