vote up 0 vote down star

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?

flag
Problem found: We do compile the php ourself and during this process unassigned variables notice is patched out. :-( – 2ni Sep 10 at 14:36

3 Answers

vote up 0 vote down

It works for me in PHP Version 5.2.8

Notice: Undefined variable: foo

<?php

error_reporting(E_ALL | E_NOTICE);  // Also works with 6143
$foo++;

?>
link|flag
vote up 2 vote down

That should cause an error message. Perhaps it is caused by registering an error handler which incorrectly swallows all errors? Such as

function error_handler($error_number  /*, ... */) {
    // do stuff...
    return true;
}
link|flag
I do have in fact a registered error_handler. But even if I do not set the error_handler, I don't get a notice. Very strange. I have php 5.2.10 – 2ni Sep 8 at 19:57
vote up 0 vote down

After altering the file php.ini. you should restart the php/apache services.

link|flag
I know + I did :-( – 2ni Sep 8 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.