首页 > PHP > call_user_func和call_user_func_array

call_user_func和call_user_func_array

2009年05月13号
查看评论 发表评论 1,621次浏览

call_user_func函数类似于一种特别的调用函数的方法,使用方法如下:
<?php
function a($b,$c)
{
    echo $b;
    echo $c;
}
call_user_func(‘a’, “111″,”222″);
call_user_func(‘a’, “333″,”444″);
//显示 111 222 333 444
?>
调用类内部的方法比较奇怪,居然用的是array,不知道开发者是如何考虑的,当然省去了new,也是满有新意的:
<?php
class a {
    function b($c)
    {
        echo $c;
    }
}
call_user_func(array(“a”, “b”),”111″);
//显示 111
?>
call_user_func_array函数和call_user_func很相似,只不过是换了一种方式传递了参数,让参数的结构更清晰:
<?php
function a($b, $c)
{
    echo $b;
    echo $c;
}
call_user_func_array(‘a’, array(“111″, “222″));
//显示 111 222
?>
call_user_func函数和call_user_func_array函数都支持引用,这让他们和普通的函数调用更趋于功能一致:
<?php
function a(&$b)
{
    $b++;
}
$c = 0;
call_user_func(‘a’, &$c);
echo $c;//显示 1
call_user_func_array(‘a’, array(&$c));
echo $c;//显示 2
?>

类别PHP 标签
  1. lacoste shoes men
    发表于 2010年06月15号 04时34分22秒 | 1楼

    You and I think alike.

  2. black Herve Leger
    发表于 2010年06月18号 11时23分59秒 | 2楼

    Thanks for a great post.

  3. cheap minnesota twins jerseys
    发表于 2010年06月22号 09时52分29秒 | 3楼

    this year is G.O.O.D

  4. mbt shoes
    发表于 2010年06月23号 02时30分07秒 | 4楼

    I was wondering the same thing.

  5. chi flat irons
    发表于 2010年06月23号 06时07分45秒 | 5楼

    i hope so

  6. nike lebron shoes
    发表于 2010年06月25号 05时36分44秒 | 6楼

    thanks for the info.like it.

  7. Mbt Shoes
    发表于 2010年06月26号 00时20分41秒 | 7楼

    It sounds like you are on the right track.

  8. Lacoste Shoes 2010
    发表于 2010年07月01号 12时30分10秒 | 8楼

    Thank you.Goddess of 2010. Let’s make this a positively, loving year.

  9. mbt shoes
    发表于 2010年07月08号 07时57分06秒 | 9楼

    Cheers to you….I look forward to reading more of your work. What a gem you are.

  10. Jorge Posada Jersey
    发表于 2010年07月09号 14时34分26秒 | 10楼

    Cute Hope!!

  11. Lacoste Shoes 2010
    发表于 2010年07月24号 14时16分53秒 | 11楼

    thanks you on this blog that writes very wise and loving thoughts.

  12. chanel purses
    发表于 2010年07月26号 09时26分48秒 | 12楼

    this blog is better Ye

  13. mbt shoe
    发表于 2010年07月28号 09时27分18秒 | 13楼

    There is absolutely nothing that has not once been said or done

  14. vibram five fingers kso
    发表于 2010年07月28号 15时24分49秒 | 14楼

    Love to see this I saw the Inspriation

  15. fake gucci watch
    发表于 2010年07月29号 10时00分52秒 | 15楼

    Wow, well done.

你必需 登陆 才能发表评论.