How do I turn off PHP Notices, Error and Warning?

Just write the below code


<?php
// Turn off all error reporting
error_reporting(0);
?>

Comments

Popular posts from this blog

Simple Laravel CRUD with Resource Controllers

[PHP] Create MySQL Trigger in PHP