mirror of
https://github.com/php/php-src.git
synced 2024-12-04 07:14:10 +08:00
35 lines
491 B
PHP
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"
|
|
}
|