You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
409 B

--TEST--
Bug #12776 (array_walk crash)
--FILE--
<?php
function test($val,$key)
{
global $globalArray;
$globalArray[]=$key; // this will end up crashing
$globalArray[]=(string)$key; // this will end up OK
print "val: $val; key: $key\n"; flush();
}
$arr=array('k'=>'v');
array_walk($arr,'test');
print "First value: ".$globalArray[0];
print "\nDone\n";
?>
--EXPECT--
val: v; key: k
First value: k
Done