据我所知,当我按值传递数组时,会创建一个数组副本。 即以下节目$ y& $ z应该需要与$ x相同的内存。但内存利用率几乎没有增加 显然,我的理解是错误的,任何人都可以解释原因。
for($i=0;$i<1000000;$i++)
$x[] = $i; // memory usage : 76519792
echo memory_get_usage();
function abc($y){
$y[1] = 1; //memory usage : 76519948
$z[]= $y; //memory usage : 76520308
}
答案 0 :(得分:3)
我听说php使用copy-on-write: http://en.wikipedia.org/wiki/Copy-on-write
作为一个例子:
<?
for($i=0;$i<100000;$i++)
$x[] = $i;
// we output the memory use:
echo memory_get_usage().'<br/>'; // outputs 14521040
// here we equate $y to $x, but instead of creating a copy,
// php engine just creates a pointer to the same memory space
$y = $x;
echo memory_get_usage().'<br/>'; // outputs 14521128
// here we change something in y, now php engine
// "creates a seperate copy" for y and makes the change
$y[1]=8;
echo memory_get_usage().'<br/>'; // outputs 23569904
?>
和函数调用的类似行为:
<?
for($i=0;$i<100000;$i++)
$x[] = $i;
echo memory_get_usage().'<br/>'; /* 14524968 */
function abc($y){
echo memory_get_usage().'<br/>'; /* 14524968 */
$y[1] = 1;
echo memory_get_usage().'<br/>'; /* 23573752 */
$z[]= $y;
echo memory_get_usage().'<br/>'; /* 23574040 */
}
abc($x);
echo memory_get_usage().'<br/>'; /* 14524968 */
?>
PS:我在windows上测试这个,也许在linux上有所不同