mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
40 lines
599 B
Plaintext
40 lines
599 B
Plaintext
|
--TEST--
|
||
|
Bug #54358 (Closure, use and reference)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class asserter {
|
||
|
public function call($function) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$asserter = new asserter();
|
||
|
|
||
|
$closure = function() use ($asserter, &$function) {
|
||
|
$asserter->call($function = 'md5');
|
||
|
};
|
||
|
|
||
|
$closure();
|
||
|
|
||
|
var_dump($function);
|
||
|
|
||
|
$closure = function() use ($asserter, $function) {
|
||
|
$asserter->call($function);
|
||
|
};
|
||
|
|
||
|
$closure();
|
||
|
|
||
|
var_dump($function);
|
||
|
|
||
|
$closure = function() use ($asserter, $function) {
|
||
|
$asserter->call($function);
|
||
|
};
|
||
|
|
||
|
$closure();
|
||
|
|
||
|
var_dump($function);
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
string(3) "md5"
|
||
|
string(3) "md5"
|
||
|
string(3) "md5"
|