我需要将一个函数作为参数传递给另一个函数,然后从函数中调用传递的函数...这可能更容易让我在代码中解释..我基本上想做这样的事情:< / p>
function ($functionToBeCalled)
{
call($functionToBeCalled,additional_params);
}
有没有办法做到这一点..我正在使用PHP 4.3.9
谢谢!
答案 0 :(得分:78)
我认为您正在寻找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");
?>
答案 1 :(得分:26)
function foo($function) {
$function(" World");
}
function bar($params) {
echo "Hello".$params;
}
$variable = 'bar';
foo($variable);
此外,你可以这样做。请参阅variable functions。
答案 2 :(得分:25)
在php中这很简单。
<?php
function here() {
print 'here';
}
function dynamo($name) {
$name();
}
//Will work
dynamo('here');
//Will fail
dynamo('not_here');
答案 3 :(得分:11)
您也可以使用call_user_func_array()
。它允许您传递一个参数数组作为第二个参数,这样您就不必确切地知道传递了多少变量。
答案 4 :(得分:11)
我知道有关PHP 4.3的原始问题,但现在已经过了几年,我只是想在PHP 5.3或更高版本中提倡我的首选方法。
PHP 5.3+现在包含对anonymous functions (closures)的支持,因此您可以使用一些标准的函数式编程技术,如JavaScript和Ruby等语言(有一些注意事项)。在“闭包样式”中重写上面的call_user_func示例看起来像这样,我发现它更优雅:
$barber = function($type) {
echo "You wanted a $type haircut, no problem\n";
};
$barber('mushroom');
$barber('shave');
显然,在这个例子中,这并没有给你带来太大的好处 - 当你将这些匿名函数传递给其他函数时(例如在原始问题中),功能和灵活性就会出现。所以你可以这样做:
$barber_cost = function($quantity) {
return $quantity * 15;
};
$candy_shop_cost = function($quantity) {
return $quantity * 4.50; // It's Moonstruck chocolate, ok?
};
function get_cost($cost_fn, $quantity) {
return $cost_fn($quantity);
}
echo '3 haircuts cost $' . get_cost($barber_cost, 3) . "\n";
echo '6 candies cost $' . get_cost($candy_shop_cost, 6) . "\n";
当然,这可以使用call_user_func来完成,但我发现这种语法更加清晰,特别是一旦涉及名称空间和成员变量。
一个警告:我将是第一个承认我不确切知道这里发生了什么的人,但你不能总是调用包含在成员或静态变量中的闭包,并且可能在其他一些情况下。但是将其重新分配给局部变量将允许调用它。因此,例如,这会给您一个错误:
$some_value = \SomeNamespace\SomeClass::$closure($arg1, $arg2);
但是这个简单的解决方法解决了这个问题:
$the_closure = \SomeNamespace\SomeClass::$closure;
$some_value = $the_closure($arg1, $arg2);
答案 5 :(得分:6)
如果你需要带参数作为参数的传递函数,你可以试试这个:
function foo ($param1){
return $param1;
}
function bar ($foo_function, $foo_param){
echo $foo_function($foo_param);
}
//call function bar
bar('foo', 'Hi there'); //this will print: 'Hi there'
希望它会有所帮助......
答案 6 :(得分:0)
如果要在PHP类中执行此操作,请查看以下代码:
// Create a sample class
class Sample
{
// Our class displays 2 lists, one for images and one for paragraphs
function __construct( $args ) {
$images = $args['images'];
$items = $args['items'];
?>
<div>
<?php
// Display a list of images
$this->loop( $images, 'image' );
// notice how we pass the name of the function as a string
// Display a list of paragraphs
$this->loop( $items, 'content' );
// notice how we pass the name of the function as a string
?>
</div>
<?php
}
// Reuse the loop
function loop( $items, $type ) {
// if there are items
if ( $items ) {
// iterate through each one
foreach ( $items as $item ) {
// pass the current item to the function
$this->$type( $item );
// becomes $this->image
// becomes $this->content
}
}
}
// Display a single image
function image( $item ) {
?>
<img src="<?php echo $item['url']; ?>">
<?php
}
// Display a single paragraph
function content( $item ) {
?>
<p><?php echo $item; ?></p>
<?php
}
}
// Create 2 sample arrays
$images = array( 'image-1.jpg', 'image-2.jpg', 'image-3.jpg' );
$items = array( 'sample one', 'sample two', 'sample three' );
// Create a sample object to pass my arrays to Sample
$elements = { 'images' => $images, 'items' => $items }
// Create an Instance of Sample and pass the $elements as arguments
new Sample( $elements );