首页 > 代码库 > 使用类名创建对象

使用类名创建对象

根据函数名调用方法

如:

  call_user_func

<?phperror_reporting(E_ALL);function increment(&$var){    $var++;}$a = 0;call_user_func(‘increment‘, $a);echo $a."\n";call_user_func_array(‘increment‘, array(&$a)); // You can use this instead before PHP 5.3echo $a."\n";?>

 

使用类名创建对象