e.g:
$functions = array(
'function1' => function($echo) { echo $echo; }
);
这可能吗?什么是最好的选择?
答案 0 :(得分:138)
有几个选择。使用create_function
:
$functions = array(
'function1' => create_function('$echo', 'echo $echo;')
);
只需将函数的名称存储为字符串(这实际上是create_function
正在执行的所有操作):
function do_echo($echo) {
echo $echo;
}
$functions = array(
'function1' => 'do_echo'
);
如果您使用的是PHP 5.3,则可以使用anonymous functions:
$functions = array(
'function1' => function($echo) {
echo $echo;
}
);
所有这些方法都列在callback
pseudo-type下的文档中。无论您选择哪种方式,推荐的调用函数的方法都是使用call_user_func
或call_user_func_array
函数。
call_user_func($functions['function1'], 'Hello world!');
答案 1 :(得分:10)
由于PHP“5.3.0匿名函数可用”,使用示例:
请注意,这比使用旧版create_function
要快得多...
//store anonymous function in an array variable e.g. $a["my_func"]
$a = array(
"my_func" => function($param = "no parameter"){
echo "In my function. Parameter: ".$param;
}
);
//check if there is some function or method
if( is_callable( $a["my_func"] ) ) $a["my_func"]();
else echo "is not callable";
// OUTPUTS: "In my function. Parameter: no parameter"
echo "\n<br>"; //new line
if( is_callable( $a["my_func"] ) ) $a["my_func"]("Hi friend!");
else echo "is not callable";
// OUTPUTS: "In my function. Parameter: Hi friend!"
echo "\n<br>"; //new line
if( is_callable( $a["somethingElse"] ) ) $a["somethingElse"]("Something else!");
else echo "is not callable";
// OUTPUTS: "is not callable",(there is no function/method stored in $a["somethingElse"])
<强>参考文献:强>
答案 2 :(得分:9)
要跟进Alex Barrett的帖子,create_function()会返回一个实际可用于调用该函数的值,因此:
$function = create_function('$echo', 'echo $echo;' );
$function('hello world');
答案 3 :(得分:0)
因为我可以...
扩展Alex Barrett的帖子。
我将进一步完善这个想法,甚至可能将其扩展到外部静态类之类的东西,并可能使用'...'标记来允许变长参数。
在下面的示例中,为清楚起见,我使用了关键字“数组”,但是方括号也可以。所示的使用init函数的布局旨在演示组织更复杂的代码。
<?php
// works as per php 7.0.33
class pet {
private $constructors;
function __construct() {
$args = func_get_args();
$index = func_num_args()-1;
$this->init();
// Alex Barrett's suggested solution
// call_user_func($this->constructors[$index], $args);
// RibaldEddie's way works also
$this->constructors[$index]($args);
}
function init() {
$this->constructors = array(
function($args) { $this->__construct1($args[0]); },
function($args) { $this->__construct2($args[0], $args[1]); }
);
}
function __construct1($animal) {
echo 'Here is your new ' . $animal . '<br />';
}
function __construct2($firstName, $lastName) {
echo 'Name-<br />';
echo 'First: ' . $firstName . '<br />';
echo 'Last: ' . $lastName;
}
}
$t = new pet('Cat');
echo '<br />';
$d = new pet('Oscar', 'Wilding');
?>
好,现在精简为一行...
function __construct() {
$this->{'__construct' . (func_num_args()-1)}(...func_get_args());
}
可用于重载任何函数,而不仅仅是构造函数。
答案 4 :(得分:-1)
通过使用闭包,我们可以将函数存储在数组中。基本上,闭包是一种无需指定名称即可创建的函数-匿名函数。
$a = 'function';
$array=array(
"a"=> call_user_func(function() use ($a) {
return $a;
})
);
var_dump($array);
答案 5 :(得分:-1)
<?php
$_['nice']=function(){
echo 'emulate a class';
};
$_['how']=function(){
echo ' Now you can ';
};
(function()use($_){//autorun
echo 'construct:';
($_['how'])();
($_['nice'])();
})();
//almost the same in here. i do not recomand each of them
//using array of functions or classes isn't a very high speed execution script
//when you build 70k minimum app
//IF YOU USE THESE ONLY TO TRIGGER SMALL THINGS OVER A FRAMEWORK THAT IS A GO
[
(function(){
echo 'construct 2:Now you can ';
return '';
})()
,(function(){
echo 'emulate a class';
return '';
})()
];
?>