gpt4 book ai didi

PHP call_user_func 与仅调用函数

转载 作者:IT老高 更新时间:2023-10-28 11:54:58 26 4
gpt4 key购买 nike

我相信对此有一个非常简单的解释。这有什么区别:

function barber($type){
echo "You wanted a $type haircut, no problem\n";
}
call_user_func('barber', "mushroom");
call_user_func('barber', "shave");

...还有这个(还有什么好处?):

function barber($type){
echo "You wanted a $type haircut, no problem\n";
}
barber('mushroom');
barber('shave');

最佳答案

当你知道它时,请始终使用实际的函数名称。

call_user_func 用于调用您事先不知道名称的函数,但效率要低得多,因为程序必须在运行时查找函数。

关于PHP call_user_func 与仅调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1596221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com