gpt4 book ai didi

PHP - 传递函数返回另一个函数

转载 作者:行者123 更新时间:2023-12-02 01:17:44 24 4
gpt4 key购买 nike

我有一个返回值的 PHP 函数:

function myfunction() {
$array = array('one', 'two', 'three', 'four');

foreach($array as $i) {
echo $i;
}
}

还有另一个函数,我想从上面的函数传递返回值:

function myfunction2() {
//how to send myfunction()'s output here? I mean:
//echo 'onetwothreefour';
return 'something additional';
}

我猜它看起来像 myfunction2(myfunction) 但我对 PHP 了解不多,所以无法让它工作。

最佳答案

是的,你只需要

return myFunction();

关于PHP - 传递函数返回另一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9230236/

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