> There are 2 PHP 5.2 changes there has been a lot of back and > forth flaming going around and we need to finally come to a > decision about. > > The two topics are: > > Inclusion of E_STRICT and E_RECOVERABLE_ERROR into E_ALL > Addition of support for dynamic statics ala: class foo {} > foo::$bar = 1;
E_RECOVERABLE_ERROR +1 As for E_STRICT, am I right in thinking that some E_STRICT warnings are generated by the parser, and before any PHP code is executed? So using error_reporting(E_ALL & ~E_STRICT) is never going to prevent some E_STRICT warnings? If so -1, as E_STRICT behaves differently compared to the other E_*s, otherwise 0. foo::$bar = 1; -1 Jared -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php