// 类
class demos
{
public static function getMethod()
{
return '方法是:'.__METHOD__;
}
public function getAge(){
return 28;
}
}
// 可以调用类中的方法
echo call_user_func(['demos','getMethod']).'<hr>';
// 调用不到公有方法
echo call_user_func(['demos','getAge']);