* Thus wrote Yashesh Bhatia:
> 
> My question is why is the funtion call
> 
> error_reporting(E_ALL|E_STRICT);
> 
> not enabling E_STRICT at runtime ?

<manual set_error_handler>
Note:  The following error types cannot be handled with a user
defined function: E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING,
E_COMPILE_ERROR, E_COMPILE_WARNING, and E_STRICT.
</manual>                               ^^^^^^^^

Most E_STRICT errors occur during compile time, not at time of
execution.

Curt
-- 
Quoth the Raven, "Nevermore."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to