Error logging in PHP
One of the most important tasks of any developer is to know what errors occur in his application, because it is impossible to fix them if you don’t know if they exist in the first place. Although you may think that your application is perfect and bugs free, you can never be 100% sure because users might not operate the application in the way you expect them to. And this is when error logging come in, where you record any errors that users encounter in a log file which can be used to improve your application. In PHP, you can control how errors are handled and reported. The following is an example of how errors may be logged:
// Error Reporting settings
ini_set('error_reporting', E_ALL ^ E_NOTICE); // log all errors except notices
ini_set('log_errors', true); // enable error logging
ini_set('html_errors', false); // disable html errors
ini_set('error_log', '/home/directory/to/your/error_log.txt'); // save all the errors to a log file
ini_set('display_errors', true); // do not display errors on screen
Related articles:
Technorati Tags: php, programming, error logging, development
Other similar posts that you might be interested in:
- Top 25 Most Dangerous Programming Errors
- Fatal error: Allowed memory size of * bytes exhausted in PHP
- Display a download dialog for pdf in PHP
- 25 Most Dangerous Programming Errors
- Creating a Contact Form in jQuery Mobile and PHP
- Removing file extension via .htaccess
- Check username availability using AJAX and jQuery
Hello! Welcome to Web development blog! My name is Ei Sabai and on this blog, I write about web development, mobile app development, latest web technologies and the likes. Read more 

