程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP中使用unset銷毀變量並內存釋放問題

PHP中使用unset銷毀變量並內存釋放問題

編輯:PHP綜合
復制代碼 代碼如下:
for ( $i = 1; $i < 100; $i++ ) {
$str = str_repeat('01234567', $i);
$a = memory_get_usage();
unset($str);
$b = memory_get_usage();
echo "\n
".$i.': '.($b - $a).' Bytes.';
}

從結果看出:
8 x 32 = 256 在256字節長的時候才真正有必要釋放內存,有些人說,不如直接$str = null來的速度快。
結果如下:
1: 0 Bytes.
2: 0 Bytes.
3: 0 Bytes.
4: 0 Bytes.
5: 0 Bytes.
6: 0 Bytes.
7: 0 Bytes.
8: 0 Bytes.
9: 0 Bytes.
10: 0 Bytes.
11: 0 Bytes.
12: 0 Bytes.
13: 0 Bytes.
14: 0 Bytes.
15: 0 Bytes.
16: 0 Bytes.
17: 0 Bytes.
18: 0 Bytes.
19: 0 Bytes.
20: 0 Bytes.
21: 0 Bytes.
22: 0 Bytes.
23: 0 Bytes.
24: 0 Bytes.
25: 0 Bytes.
26: 0 Bytes.
27: 0 Bytes.
28: 0 Bytes.
29: 0 Bytes.
30: 0 Bytes.
31: 0 Bytes.
32: -272 Bytes.
33: -280 Bytes.
34: -288 Bytes.
35: -296 Bytes.
36: -304 Bytes.
37: -312 Bytes.
38: -320 Bytes.
39: -328 Bytes.
40: -336 Bytes.
41: -344 Bytes.
42: -352 Bytes.
43: -360 Bytes.
44: -368 Bytes.
45: -376 Bytes.
46: -384 Bytes.
47: -392 Bytes.
48: -400 Bytes.
49: -408 Bytes.
50: -416 Bytes.
51: -424 Bytes.
52: -432 Bytes.
53: -440 Bytes.
54: -448 Bytes.
55: -456 Bytes.
56: -464 Bytes.
57: -472 Bytes.
58: -480 Bytes.
59: -488 Bytes.
60: -496 Bytes.
61: -504 Bytes.
62: -512 Bytes.
63: -520 Bytes.
64: -528 Bytes.
65: -536 Bytes.
66: -544 Bytes.
67: -552 Bytes.
68: -560 Bytes.
69: -568 Bytes.
70: -576 Bytes.
71: -584 Bytes.
72: -592 Bytes.
73: -600 Bytes.
74: -608 Bytes.
75: -616 Bytes.
76: -624 Bytes.
77: -632 Bytes.
78: -640 Bytes.
79: -648 Bytes.
80: -656 Bytes.
81: -664 Bytes.
82: -672 Bytes.
83: -680 Bytes.
84: -688 Bytes.
85: -696 Bytes.
86: -704 Bytes.
87: -712 Bytes.
88: -720 Bytes.
89: -728 Bytes.
90: -736 Bytes.
91: -744 Bytes.
92: -752 Bytes.
93: -760 Bytes.
94: -768 Bytes.
95: -776 Bytes.
96: -784 Bytes.
97: -792 Bytes.
98: -800 Bytes.
99: -808 Bytes.

我們先看一個例子
復制代碼 代碼如下:
<?php
$s=str_repeat('1',255); //產生由255個1組成的字符串
$m=memory_get_usage(); //獲取當前占用內存
unset($s);
$mm=memory_get_usage(); //unset()後再查看當前占用內存
echo $m-$mm;
?>

最後輸出unset()之前占用內存減去unset()之後占用內存,如果是正數,那麼說明unset($s)已經將$s從內存中銷毀(或者說,unset()之後內存占用減少了),可是我在PHP5和windows平台下,得到的結果是:-48。這是否可以說明,unset($s)並沒有起到銷毀變量$s所占用內存的作用呢?我們再作下面的例子:
復制代碼 代碼如下:
<?php
$s=str_repeat('1',256); //產生由256個1組成的字符串
$m=memory_get_usage(); //獲取當前占用內存
unset($s);
$mm=memory_get_usage(); //unset()後再查看當前占用內存
echo $m-$mm;
?>

這個例子,和上面的例子幾乎相同,唯一的不同是,$s由256個1組成,即比第一個例子多了一個1,得到結果是:224。這是否可以說明,unset($s)已經將$s所占用的內存銷毀了?
通過上面兩個例子,我們可以得出以下結論:結論一、unset()函數只能在變量值占用內存空間超過256字節時才會釋放內存空間。
那麼是不是只要變量值超過256,使用unset就可以釋放內存空間呢?我們再通過一個例子來測試一下:
復制代碼 代碼如下:
<?php
$s=str_repeat('1',256); //這和第二個例子完全相同
$p=&$s;
$m=memory_get_usage();
unset($s); //銷毀$s
$mm=memory_get_usage();
echo $p.'<br />';
echo $m-$mm;
?>

'刷新頁面,我們看到第一行有256個1,第二行是-48,按理說我們已經銷毀了$s,而$p只是引用$s的變量,應該是沒有內容了,另外,unset($s)後內存占用卻比unset()前增加了!現在我們再做以下的例子:
復制代碼 代碼如下:
<?php
$s=str_repeat('1',256); //這和第二個例子完全相同
$p=&$s;
$m=memory_get_usage();
$s=null; //設置$s為null
$mm=memory_get_usage();
echo $p.'<br />';
echo $m-$mm;
?>

現在刷新頁面,我們看到,輸出$p已經是沒有內容了,unset()前後內存占用量之差是224,即已經清除了變量占用的內存。本例中的$s=null也可以換成unset(),如下:
復制代碼 代碼如下:
<?php
$s=str_repeat('1',256); //這和第二個例子完全相同
$p=&$s;
$m=memory_get_usage();
unset($s); //銷毀$s
unset($p);
$mm=memory_get_usage();
echo $p.'<br />';
echo $m-$mm;
?>

我們將$s和$p都使用unset()銷毀,這時再看內存占用量之差也是224,說明這樣也可以釋放內存。那麼,我們可以得到另外一條結論:結論二、只有當指向該變量的所有變量(如引用變量)都被銷毀後,才會釋放內存。
相信經過本文的例子後,大家應該對unset()有所了解了,最起碼,本人用unset()也是為了在變量不起作用時,釋放內存。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved