call_user_method_array

(PHP 4 >= 4.0.5, PHP 5)

call_user_method_array以参数列表的数组,调用用户方法

Warning

This function was DEPRECATED in PHP 4.1.0, and REMOVED in PHP 7.0.0.

Alternatives to this function include:

说明

call_user_method_array ( string $method_name , object &$obj , array $params ) : mixed

参数

method_name

要调用的方法名称。

obj

要调用的 method_name 所在的对象 object

params

数组形式的一组参数。

范例

Example #1 代替 call_user_method_array()

<?php
call_user_func_array
(array($obj$method_name), $params);
?>

参见