[PHP-DEV] Bug #3307 Updated: Optional Warnings Feature Request From: Bug Database (php-dev <email protected>)
Date: 01/24/00

ID: 3307
Updated by: torben
Reported By: chriskl <email protected>
Status: Closed
Bug Type: Feature/Change Request
Assigned To:
Comments:

Already there; check the manual:

  http://www.php.net/manual/function.error-reporting.php3

<?php
$oldlevel = error_reporting( E_ALL );
/* Do something; every little thing PHP catches will be displayed. */
. . .
error_reporting( $oldlevel ); /* Reset the old level. */
?>

Full Bug description available at: http://bugs.php.net/?id=3307

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>