首页 >函数列表 >call_user_method

call_user_method

call_user_method

(PHP 4, PHP 5)

call_user_method 对特定对象调用用户方法(已废弃)

说明

mixed call_user_method ( string $method_name , object &$obj [, mixed $parameter [, mixed $... ]] ) Warning

call_user_method() 函数从 PHP 4.1.0 开始已经停用,使用 call_user_func() 函数和 array(&$obj, "method_name") 语法代替。

从用户定义的 obj 对象中调用 method_name 指的方法。下边是用法示例,我们定义了一个类,接着创建了一个对象实例,然后使用 call_user_method() 间接调用它的 print_info 方法。

<?php
class Country {
    var 
$NAME;
    var 
$TLD;
    
    function 
Country($name$tld)
    {
        
$this->NAME $name;
        
$this->TLD $tld;
    }

    function 
print_info($prestr="")
    {
        echo 
$prestr "Country: " $this->NAME " ";
        echo 
$prestr "Top Level Domain: " $this->TLD " ";
    }
}

$cntry = new Country("Peru""pe");

echo 
"* Calling the object method directly ";
$cntry->print_info();

echo 
" * Calling the same method indirectly ";
call_user_method("print_info"$cntry" ");
?>

参见 call_user_func_array()call_user_func()


  • call_user_method
  • call_user_method_array
  • class_alias
  • class_exists
  • get_called_class
  • get_class
  • get_class_methods
  • get_class_vars
  • get_declared_classes
  • get_declared_interfaces
  • get_object_vars
  • get_parent_class
  • interface_exists
  • is_a
  • is_subclass_of
  • method_exists
  • property_exists
  • PHP MySQL HTML CSS JavaScript MSSQL AJAX .NET JSP Linux Mac ASP 服务器 SQL jQuery C# C++ java Android IOS oracle MongoDB SQLite wamp 交通频道