I'm having some trouble understanding why the following doesn't result in a compiler error in 5.3.3 (errored-out correctly on my coworkers 5.2.5):
<?php
echo "starting\n";
switch(1) {
case 2:
echo "two\n";
break;
defalut: // note the misspelling
echo "deflaut\n";
}
echo "ending\n";
Instead of giving me a compiler error (or even a warning) it just gives this:
starting
ending
However, if I use it in an if-statement it gives me what I'd expect:
<?php
if (1 == deflaut)
echo "deflaut2\n";
gives:
PHP Notice: Use of undefined constant deflaut - assumed 'deflaut' in ...
Why is this? Is there a setting somewhere I can disable to tell it to be strict about this sort of thing?
