Skrevs ursprungligen av ivar
Okej.. notices kan man alltså ta med en nypa salt.
Om man läser manualen så kan man hitta detta:
Not: Enabling E_NOTICE during development has some benefits. For debugging purposes: NOTICE messages will warn you about possibls bugs in your code. For example, use of unassigned values are warned. It is extremely useful to find typos and to save time for debugging. NOTICE messages will warn you about bad style. For example, $arr[item] is better to be written as $arr['item'] since PHP tries to treat "item" as constant. If it is not a constant, PHP assumes it is a string index for the array.
Och detta:
Run-time notices. Indicate that the script encountered something that could indicate an error, but could also happen in the normal course of running a script.