我对 php 5.3 脚本的内存分配有疑问。想象一下,您有 2 个静态类(MyData 和 Test),如下所示:
class MyData {
private static $data = null;
public static function getData() {
if(self::$data == null)
self::$data = array(1,2,3,4,5,);
return self::$data;
}
}
class Test {
private static $test_data = null;
public static function getTestData1() {
if(self::$test_data==null) {
self::$test_data = MyData::getData();
self::$test_data[] = 6;
}
return self::$test_data;
}
public static function getTestData2() {
$test = MyData::getData();
$test[] = 6;
return $test;
}
}
还有一个简单的 test.php 脚本:
for($i = 0; $i < 200000; $i++) {
echo "Pre-data1 Test:\n\t" . memory_get_usage(true) . "\n";
Test::getTestData1();
echo "Post-data1 Test:\n\t" . memory_get_usage(true) . "\n";
}
for($i = 0; $i < 200000; $i++) {
echo "Pre-data2 Test:\n\t" . memory_get_usage(true) . "\n";
Test::getTestData2();
echo "Post-data2 Test:\n\t" . memory_get_usage(true) . "\n";
}
我可能假设对 Test::getTestData1() 的调用将为 2 个静态变量分配内存,而 Test::getTestData2() 将在函数返回时破坏 $test (静态变量的副本),因此第二次调用较少“内存昂贵”。
但是如果我运行 test.php 脚本,memory_get_usage 将显示相同的值 Test::getTestData1() 和 Test::getTestData2()
为什么?