<?php const A = 'b::c'; class B { static function C() {echo __METHOD__;} } constant('A')(); // displays B::C, // as class and method are case insensitive 'b::c'(); // works as literal A(); // Error, no such function as A ?>
You have javascript disabled. You will not be able to edit any code.