php的call_user_func函数实现调用类中的方法
解决方法:
<?php
class index extends web {
public function doindex(){
echo "我被调用了";
}
$classname = "index";
//通过数组键值的方式,对类名进行回调,回调类名里面的,doindex方法
call_user_func(array($classname,'doindex'));
//通过类名直接调用静态方法
call_user_func($classname .'::doindex');
//通过对象的方式回调
$myobject = new myclass();
call_user_func(array($myobject, 'doindex'));
}
?>