php-src/tests/lang/bug21600.phpt

35 lines
491 B
PHP

--TEST--
Bug #21600 (assign by reference function call changes variable contents)
--FILE--
<?php
$tmp = array();
$tmp['foo'] = "test";
$tmp['foo'] = &bar($tmp['foo']);
var_dump($tmp);
unset($tmp);
$tmp = array();
$tmp['foo'] = "test";
$tmp['foo'] = &fubar($tmp['foo']);
var_dump($tmp);
function bar($text){
return $text;
}
function fubar($text){
$text = &$text;
return $text;
}
?>
--EXPECT--
array(1) {
["foo"]=>
&string(4) "test"
}
array(1) {
["foo"]=>
string(4) "test"
}