1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 13:01:02 +02:00
Files
archived-php-src/tests/lang/bug21600.phpt
2003-02-24 16:50:35 +00:00

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"
}