gpt4 book ai didi

PHP 将函数名称作为参数传递然后调用该函数?

转载 作者:IT王子 更新时间:2023-10-29 00:52:14 30 4
gpt4 key购买 nike

我需要将一个函数作为参数传递给另一个函数,然后从函数内部调用传递的函数...这对我来说在代码中解释起来可能更容易...我基本上想做这样的事情:

function ($functionToBeCalled)
{
call($functionToBeCalled,additional_params);
}

有没有办法做到这一点..我正在使用 PHP 4.3.9

谢谢!

最佳答案

我想你在找call_user_func .

PHP 手册中的示例:

<?php
function barber($type) {
echo "You wanted a $type haircut, no problem";
}
call_user_func('barber', "mushroom");
call_user_func('barber', "shave");
?>

关于PHP 将函数名称作为参数传递然后调用该函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/627775/

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