call_user_method

(PHP 4, PHP 5)

call_user_method对特定对象调用用户方法

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 ( string $method_name , object &$obj [, mixed $parameter [, mixed $... ]] ) : mixed

参数

method_name

要调用的方法名称。

obj

要调用的 method_name 所在的对象 object

parameter ...

可选参数

范例

Example #1 代替 call_user_method()

<?php
call_user_func
(array($obj$method_name), $parameter /* , ... */);
?>

参见