Showing All Bugs in PHP

Specially when we are developing software to see the bugs and  handle them we need to show bugs of PHP.

Here is the code which does this operation.

<?php

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

 

Comments

There are no comments, make the firs comment