-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/standard/tests/array/
File Upload :
Current File : //usr/src/php/ext/standard/tests/array/bug52719.phpt

--TEST--
Bug #52719: array_walk_recursive crashes if third param of the function is by reference
--FILE--
<?php
$array = array("hello", array("world"));
$userdata = array();
array_walk_recursive(
    $array,
    function ($value, $key, &$userdata) { },
    $userdata
);
echo "Done";
?>
--EXPECTF--
Done

Copyright © 2017 || Recoded By Mr.Bumblebee