php icon indicating copy to clipboard operation
php copied to clipboard

Error while parsing class definition

Open gleamingthecube opened this issue 10 years ago • 0 comments

test file:

<?php
class A {
    function f($x) {
        if ($x)
            return 1;
        else
            return 2;
    }
}
?>

got:

unexpected class member PHP End:"?>"

gleamingthecube avatar Jul 27 '15 10:07 gleamingthecube