ID: 16137 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Verified +Status: Closed Bug Type: PHP options/info functions Operating System: All PHP Version: 4.3.0-dev New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2002-03-18 06:29:24] [EMAIL PROTECTED] I have not tested this with ini_get, but IMHO a) error_reporting() should be an alias for ini_get("error_reporting") and b) error_reporting(E_ALL) should be an alias for ini_set("error_reporting", E_ALL)... Goba ------------------------------------------------------------------------ [2002-03-18 04:20:46] [EMAIL PROTECTED] Consider the code below, with error_repoting set to E_ALL (2047) before the script start: <?php $prev = error_reporting(); error_reporting(2046); $new = error_reporting(); echo $prev . " -> " . $new; //ini_set("error_reporting", $new); phpinfo(); ?> This would set the error_reporting to 2046, as returned and injected to the $new variable. BUT phpinfo() will present 2047 as the local value, instead of 2046. If you uncomment the ini_set() call, you get the correct 2046 in the phpindo() output. So error_repoting(..) and ini_set("error_reporting"..) are not the same ;(( ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16137&edit=1
