I have E_NOTICE activated in php.ini. It still does not warn me about unassigned values like
$foo++;
Tried to set the error_reporting as well. Does not work. error_reporting() is set to 6143, which means that E_NOTICE is activated. This code snippet also warns me with a notice:
$foo = bar;
Any ideas?