PHP变量引用和内存使用

前端之家收集整理的这篇文章主要介绍了PHP变量引用和内存使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据 php manual
<?PHP
$a =& $b;
?>
// Note:
// $a and $b are completely equal here. $a is not pointing to $b or vice versa.
// $a and $b are pointing to the same place.

我假设:

<?PHP
$x = "something";
$y = $x;
$z = $x;

应消耗更多的记忆比:

<?PHP
$x = "something";
$y =& $x;
$z =& $x;

因为,如果我理解正确的话,在第一种情况下,我们’重复’一些值并将其分配给$y和$z,最终有3个变量和3个内容,而在第二种情况下,我们有3个变量指向相同内容.

所以,使用如下代码

$value = "put something here,like a long lorem ipsum";
for($i = 0; $i < 100000; $i++)
{
    ${"a$i"} =& $value;
}
echo memory_get_usage(true);

我期望内存使用量低于:

$value = "put something here,like a long lorem ipsum";
for($i = 0; $i < 100000; $i++)
{
    ${"a$i"} = $value;
}
echo memory_get_usage(true);

但是在这两种情况下,内存使用情况都是一样的.

我失踪了什么

猜你在找的PHP相关文章