当前位置:Gxlcms > PHP教程 > php变量类名动态调用类静态方法的例子

php变量类名动态调用类静态方法的例子

时间:2021-07-01 10:21:17 帮助过:74人阅读

  1. class cls
  2. {
  3. public static function test($userName)
  4. {
  5. echo 'Hi, ' . $userName . "\n";
  6. }
  7. }
  8. $className = 'cls';
  9. $className::test('Tom'); // PHP >= 5.3.0
  10. call_user_func(array($className, 'test'), 'Jack'); // PHP 3 >= 3.0.3, PHP 4, PHP 5
  11. call_user_func_array(array($className, 'test'), array('Lily')); // PHP 4 >= 4.0.4, PHP 5

参见:http://cn.php.com/manual/zh/language.oop5.static.php

另外,也可以借助 php eval 函数来实现,这个大家自行研究下。

人气教程排行