Syntax Error出て欲しいけど出ない

PHP

これ、syntax error出て欲しいけど、通っちゃう。
8行目

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<?php
class Sample
{
const HOGE = 'hoge';
public function execute()
{
switch (true) {
case self:HOGE:
return 1;
}
}
}
<?php class Sample { const HOGE = 'hoge'; public function execute() { switch (true) { case self:HOGE: return 1; } } }
<?php
class Sample
{
    const HOGE = 'hoge';
    public function execute()
    {
        switch (true) {
        case self:HOGE:
            return 1;
        }
    }

}

PHP5.3.10

Comments

タイトルとURLをコピーしました