What is the best method of hiding php errors from being displayed on the browser?
Would it be to use the following:
`ini_set("display_errors", 1);`
Any best practice tips would be appreciated as well!
Thanks!
-Matt
*UPDATE: I am logging the errors, I just want to make sure that setting the display_errors value to off (or 0) will not cause my errors not to be logged.*