Hi!

>>   2. Mention how to turn off E_DEPRECATED warnings in the RFC?
> 
> Done and done. I've added a (short) workarounds section towards the
> bottom, which can be moved up later if the RFC is accepted.

Please note currently PHP has no mechanism of turning off any warnings
or errors. The best you can do is to cause them not be printed. However,
any tool that intercepts error messages still sees them, they still
consume resources when produced, still may break unit tests if you're
not aware of them and they convert errors to failures like PHPUnit does,
still will break any code that sets it's won error reporting if it
doesn't remember to disable deprecated messages, etc. So adding warnings
hurts performance and may hurt functionality even if you don't see them.

-- 
Stanislav Malyshev, Software Architect
SugarCRM: http://www.sugarcrm.com/
(408)454-6900 ext. 227

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

Reply via email to