gpt4 book ai didi

php - 使用 call_user_func 传递参数?

转载 作者:IT王子 更新时间:2023-10-28 23:55:33 26 4
gpt4 key购买 nike

有没有一种方法可以使用 call_user_func 调用函数并向其传递参数?比如我有

function test($args)
{
echo "I DID IT!";
}

但是我不能调用这个函数,因为它有一个没有被传递的参数

call_user_func("test");

有没有办法调用该函数并为其提供参数? (例如,传递列表参数的能力)?非常感谢任何帮助!

最佳答案

如果你要read the documentation您会看到 call_user_func() 接受可变数量的参数:

call_user_func('test', 'argument1', 'argument2');

您还可以使用 call_user_func_array('callback', array('array','of','arguments')) .

关于php - 使用 call_user_func 传递参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11767733/

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