<code><?php
function foo($function) {
$function(" World");
}
function bar($params) {
echo "Hello".$params;
}
$variable = 'bar';
foo($variable);</code>这段代码不太靠谱,感觉$variable不好区分是string还是函数
<code><?php
function foo($function) {
$function(" World");
}
function bar($params) {
echo "Hello".$params;
}
$variable = 'bar';
foo($variable);</code>这段代码不太靠谱,感觉$variable不好区分是string还是函数
匿名函数
<code>function f1(callable $f)
{
return function ($iterator) use ($f){
return $f($iterator);
};
}
</code>
如果你想判断一个$var是否是函数(准确的说是否可被调用),可以使用is_callable($var)这个函数进行判断。或者在定义参数上直接使用function foo(callable $function)进行限制。
判断是否存在函数
立即学习“PHP免费学习笔记(深入)”;
<code class="php">function foo($function) {
if(!function_exists($function)){
die('没有该函数');
}
$function(" World");
}</code>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号