e-notices

PHP - How can I write better code with E_NOTICES enabled?

I prefer to develop with E_NOTICES turned on, but I often have to write excess, overly verbose, code when working with array indexes. How can I write this code in less code with E_NOTICES enabled. With notices suppressed if ($_REQUEST['some_key'] == 'bob') { } Without notices suppressed if (array_key_exists('some_key', $_REQUEST) &...

Set custom error levels in zend framework

How can I set custom error levels with Zend Framework - say, I want to disable E_NOTICE. Thanks. ...