Puede obtener todas las advertencias y errores al suprimir los avisos u cantar esta:
error_reporting(E_ALL & ~E_NOTICE & ~E_USER_NOTICE);
Las banderas de informe de errores a nivel de bits son:
Error Bit Purpose
###############################################################################
E_ALL All errors and warnings (doesn't include E_STRICT)
###############################################################################
E_ERROR Fatal run-time errors
###############################################################################
E_WARNING Run-time warnings (non-fatal errors)
###############################################################################
E_PARSE Compile-time parse errors
###############################################################################
E_NOTICE Run-time notices (these are warnings which often result
from a bug in your code, but it's possible that it was
intentional (e.g., using an uninitialized variable and
relying on the fact it's automatically initialized to
an empty string)
###############################################################################
E_STRICT Run-time notices, enable to have PHP suggest changes to
your code which will ensure the best interoperability
and forward compatibility of your code.
###############################################################################
E_CORE_ERROR Fatal errors that occur during PHP's initial startup
###############################################################################
E_CORE_WARNING Warnings (non-fatal errors) that occur during PHP's
initial startup
###############################################################################
E_COMPILE_ERROR Fatal compile-time errors
###############################################################################
E_COMPILE_WARNING Compile-time warnings (non-fatal errors)
###############################################################################
E_USER_ERROR User-generated error message
###############################################################################
E_USER_WARNING User-generated warning message
###############################################################################
E_USER_NOTICE User-generated notice message
###############################################################################
También puede establecer ignore_repeated_errors
TRUE/1, de modo que no se inunde su registro también.
ini_set('ignore_repeated_errors',1);
No es realmente un mensaje de "falsa", sólo uno desea ignorar a sabiendas. Si nadie puede encontrar una configuración ini para suprimir este aviso en particular, probablemente lo único que pueda hacer es anular temporalmente el manejador de errores, hacer coincidir la cadena con este error en particular y soltarlo. – deceze
Bueno, supongo que lo mismo podría decirse si escupiera un mensaje cada vez que dividiera 3 entre 2. Elegiría "ignorarlo" a sabiendas también. AFAICT, el mensaje omite el controlador de errores. (Debido a que su fuente es "Desconocido"?) – danorton