mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
12 lines
207 B
PHP
12 lines
207 B
PHP
--TEST--
|
|
Bug #67856 (Leak when using array_reduce with by-ref function)
|
|
--FILE--
|
|
<?php
|
|
$array = [1, 2, 3];
|
|
var_dump(array_reduce($array, function(&$a, &$b) {
|
|
return $a + $b;
|
|
}, 0));
|
|
?>
|
|
--EXPECT--
|
|
int(6)
|