Jason Garber wrote:
> Hello boots,
> 
>   if(AppDevLevel == 'Production')
>   {
>      error_reporting(E_ALL);
>   }
>   else
>   {
>      error_reporting(E_ALL | E_STRICT);
>   }
>   
>   Why don't you implement something like this in your application -
>   then you CAN control what error level is used at the client site.

Because setting E_SCRIPT at runtime is mostly useless as many of the
E_STRICT checks are compile-time.

-Rasmus

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to