<?php // comment for check $a instanceof a::b; // Parse error: syntax error, unexpected identifier "b", $a instanceof a::$p; // OK $a instanceof a::m(); //Parse error: syntax error, unexpected identifier "m", $a instanceof a::class; //Parse error: syntax error, unexpected token "class",
You have javascript disabled. You will not be able to edit any code.