首页 > 代码库 > call_user_function()方法的使用
call_user_function()方法的使用
call_user_func ( callback $function [, mixed $parameter [, mixed $... ]] )
调用第一个参数所提供的用户自定义的函数。
返回值:返回调用函数的结果,或FALSE。
example:
Php代码
- <?php
- function eat($fruit) //参数可以为多个
- {
- echo "You want to eat $fruit, no problem";
- }
- call_user_func(‘eat‘, "apple"); //print: You want to eat apple, no problem;
- call_user_func(‘eat‘, "orange"); //print: You want to eat orange,no problem;
- ?>
调用类的内部方法:
Php代码
- <?php
- class myclass {
- function say_hello($name)
- {
- echo "Hello!$name";
- }
- }
- $classname = "myclass";
- //调用类内部的函数需要使用数组方式 array(类名,方法名)
- call_user_func(array($classname, ‘say_hello‘), ‘dain_sun‘);
- //print Hello! dain_sun
- ?>
call_user_func_array 函数和 call_user_func 很相似,只是使用了数组的传递参数形式,让参数的结构更清晰:
call_user_func_array ( callback $function , array $param_arr )
调用用户定义的函数,参数为数组形式。
返回值:返回调用函数的结果,或FALSE。
Php代码
- <?php
- function debug($var, $val)
- {
- echo "variable: $var <br> value: $val <br>";
- echo "<hr>";
- }
- $host = $_SERVER["SERVER_NAME"];
- $file = $_SERVER["PHP_SELF"];
- call_user_func_array(‘debug‘, array("host", $host));
- call_user_func_array(‘debug‘, array("file", $file));
- ?>
调用类的内部方法和 call_user_func 函数的调用方式一样,都是使用了数组的形式来调用。
exmaple:
Php代码
- <?php
- class test
- {
- function debug($var, $val)
- {
- echo "variable: $var <br> value: $val <br>";
- echo "<hr>";
- }
- }
- $host = $_SERVER["SERVER_NAME"];
- $file = $_SERVER["PHP_SELF"];
- call_user_func_array(array(‘test‘, ‘debug‘), array("host", $host));
- call_user_func_array(array(‘test‘, ‘debug‘), array("file", $file));
- ?>
注:call_user_func函数和call_user_func_array函数都支持引用。
Php代码
- <?php
- function increment(&$var)
- {
- $var++;
- }
- $a = 0;
- call_user_func(‘increment‘, $a);
- echo $a; // 0
- call_user_func_array(‘increment‘, array(&$a)); // You can use this instead
- echo $a; // 1
- ?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。