|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-17 15:56 UTC] Jared dot Williams1 at ntlworld dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 01:00:01 2025 UTC |
Description: ------------ Setting error_reporting to 0, doesnt not prevent E_STRICT warnings. Reproduce code: --------------- E:\php5.2-win32>php -r "var_dump(get_cfg_var('cfg_file_path')); var_dump(error_reporting());" string(23) "E:\php5.2-win32\php.ini" int(0) <- error_reporting is 0 E:\php5.2-win32>go-pear PHP Strict Standards: Assigning the return value of new by reference is deprecated in phar://go-pear.phar/PEAR.php on line 563 PHP Strict Standards: Assigning the return value of new by reference is deprecated in phar://go-pear.phar/PEAR.php on line 566 Expected result: ---------------- No PHP Strict Standard warnings.