Bueno .. dices que no te remitamos al manual oficial de PHP .. pero es que ahí dice en respuesta a tu pregunta:
Cita: 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.
Pero en esta sección del manual oficial de PHP hay un tratamiento de errores que hace mención a esos E_PARSER y otros .. Pruebalo:
http://www.php.net/manual/en/ref.errorfunc.php
También tienes esta classe para control de errores al parecer bastante buena:
http://phpclasses.upperdesign.com/br...ml/package/345
Otro detalle .. en tu php.ini tienes la directiva "display_errors" (ON/OFF) .. puedes ajustar su valor en tiempo de ejecución vía ini_set() (
http://www.php.net/ini_set)
Un saludo,