PHP 中的 call_user_method() 函数

phpprogrammingserver side programming

call_user_method() 函数在特定对象上调用用户方法。

注意 − 该函数现已弃用。

语法

call_user_method(method, obj, params)

参数

  • method − 方法名称

  • obj − 正在调用该方法的对象。

  • params −参数数组

替代方案

由于 call_user_method() 在 PHP 4.1.0 中已弃用,并在 PHP 7.0 中被删除,因此使用以下方法作为替代解决方案 −

call_user_func(array($obj, $method), $params);

相关文章