可以为php制作循环功能,就像这样工作
function hit(){
}
function forLoop($function, $times) {
for($x = 0; $x < $times; $x++) {
$function;
}
$this->forLoop($function, 5);
答案 0 :(得分:0)
可以使用call_user_func
功能完成此操作:
function hit(){
echo "hello !";
}
function forLoop($function, $times) {
for($x = 0; $x < $times; $x++) {
call_user_func($function);
}
}
forLoop('hit', 5);