今天在群里面,有个叫lewis的在问call_user_func_array的用法,因为之前一直没有用过,也不能说什么,于是看一下手册,发现是这么写的:
call_user_func_array
(PHP 4 >= 4.0.4, PHP 5)
call_user_func_array -- Call a user function given with an array of parameters
Description
mixed call_user_func_array ( callback function, array param_arr )
Call a user defined function given by function, with the parameters in param_arr.
然后还有一个例子:
PHP代码
1. <?php
2. function debug($var, $val)
3. {
4. echo "***DEBUGGING\nVARIABLE: $var\nVALUE:";
5. if (is_array($val) || is_object($val) || is_resource($val)) {
6. print_r($val);
7. } else {
8. echo "\n$val\n";
9. }
10. echo "***\n";
11. }
12.
13. $c = mysql_connect();
14. $host = $_SERVER["SERVER_NAME"];
15.
16. call_user_func_array('debug', array("host", $host));
17. call_user_func_array('debug', array("c", $c));
18. call_user_func_array('debug', array("_POST", $_POST));
19. ?>
相信看了例子之后应该有点明白了吧?
我自己是这么理解这个函数的,如果说的不对,还望各位高手不要耻笑:
该函数真正的用法有点类似于函数重载,因为他的第一个参数是字符型的,也就是函数的名称,第二个参数是数组,我们可以当成该函数的各个参数,而事实上也就是这么用的,如果你看过我的前一篇文章:PHP的伪重载 ,或许你能够理解,正是因为这个函数的存在,我发现函数重载也可以这样运用:
PHP代码
看到不?而我最初的写法,在PHP的伪重载一文中有所提及,仅作参考。。。。
这些只是call_user_func_array的简易用法,在PHP4下测试过,而手册中还有一些将第一个参数当成数组来传入的例子,我在PHP4下是没有办法运行的,也许PHP5可以吧,但我不用PHP5的,也没有办法解释什么。谢谢各位 以前一直用PHP4的,现在用PHP5了,关于这个函数,大家可以看看thinkphp的functions.php中的getInstance方法,也是一个很好的诠释哦
膘哥的blog:
http://www.neatstudio.com/show-300-1.shtml
http://www.joomlagate.com/component/option,com_smf/Itemid,31/topic,7594.0/
call_user_func_array
(PHP 4 >= 4.0.4, PHP 5)
call_user_func_array -- Call a user function given with an array of parameters
Description
mixed call_user_func_array ( callback function, array param_arr )
Call a user defined function given by function, with the parameters in param_arr.
然后还有一个例子:
PHP代码
1. <?php
2. function debug($var, $val)
3. {
4. echo "***DEBUGGING\nVARIABLE: $var\nVALUE:";
5. if (is_array($val) || is_object($val) || is_resource($val)) {
6. print_r($val);
7. } else {
8. echo "\n$val\n";
9. }
10. echo "***\n";
11. }
12.
13. $c = mysql_connect();
14. $host = $_SERVER["SERVER_NAME"];
15.
16. call_user_func_array('debug', array("host", $host));
17. call_user_func_array('debug', array("c", $c));
18. call_user_func_array('debug', array("_POST", $_POST));
19. ?>
相信看了例子之后应该有点明白了吧?
我自己是这么理解这个函数的,如果说的不对,还望各位高手不要耻笑:
该函数真正的用法有点类似于函数重载,因为他的第一个参数是字符型的,也就是函数的名称,第二个参数是数组,我们可以当成该函数的各个参数,而事实上也就是这么用的,如果你看过我的前一篇文章:PHP的伪重载 ,或许你能够理解,正是因为这个函数的存在,我发现函数重载也可以这样运用:
PHP代码
1. <?php
2. /**
3. * 例子写完后,本来认为完事了,结果遇到有人问call_user_func_array(),看了一下手册
4. * 原来,我上面的那个test函数还可以精简成如下的例子,
5. */
6. function otest1 ($a)
7. {
8. echo( '一个参数' );
9. }
10.
11. function otest2 ( $a, $b)
12. {
13. echo( '二个参数' );
14. }
15.
16. function otest3 ( $a ,$b,$c)
17. {
18. echo( '三个啦' );
19. }
20.
21. function otest ()
22. {
23. $args = func_get_args();
24. $num = func_num_args();
25. call_user_func_array( 'otest'.$num, $args );
26. }
27.
28. otest(1,2);
2. /**
3. * 例子写完后,本来认为完事了,结果遇到有人问call_user_func_array(),看了一下手册
4. * 原来,我上面的那个test函数还可以精简成如下的例子,
5. */
6. function otest1 ($a)
7. {
8. echo( '一个参数' );
9. }
10.
11. function otest2 ( $a, $b)
12. {
13. echo( '二个参数' );
14. }
15.
16. function otest3 ( $a ,$b,$c)
17. {
18. echo( '三个啦' );
19. }
20.
21. function otest ()
22. {
23. $args = func_get_args();
24. $num = func_num_args();
25. call_user_func_array( 'otest'.$num, $args );
26. }
27.
28. otest(1,2);
看到不?而我最初的写法,在PHP的伪重载一文中有所提及,仅作参考。。。。
这些只是call_user_func_array的简易用法,在PHP4下测试过,而手册中还有一些将第一个参数当成数组来传入的例子,我在PHP4下是没有办法运行的,也许PHP5可以吧,但我不用PHP5的,也没有办法解释什么。谢谢各位 以前一直用PHP4的,现在用PHP5了,关于这个函数,大家可以看看thinkphp的functions.php中的getInstance方法,也是一个很好的诠释哦
膘哥的blog:
http://www.neatstudio.com/show-300-1.shtml
http://www.joomlagate.com/component/option,com_smf/Itemid,31/topic,7594.0/
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/2806/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2010-3-12 18:02
评论列表