一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

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

復制代碼 代碼如下:
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()也是為了在變量不起作用時,釋放內存。

php技術PHP中使用unset銷毀變量并內存釋放問題,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 天天色天天插 | 久久夜色精品国产噜噜亚洲a | 99在线精品国产不卡在线观看 | 国产精品久久久久久久久久一区 | 亚洲乱码一区 | 国语自产拍在线观看任你躁 | 精品国免费一区二区三区 | 免费成人在线观看 | 色视频一区二区三区 | 欧美一级特黄特黄做受 | 日韩免费视频一区二区 | 婷婷六月激情在线综合激情 | 久久综合狠狠综合久久 | 日韩成人免费一级毛片 | 久久久久国产精品美女毛片 | 国产久热香蕉在线观看 | 免费看美女扒开腿让男人桶 | 五月网站 | 最大胆极品欧美人体 | 91丨九色丨首页在线观看 | 91视频免费观看网站 | 一区二区三区不卡视频 | 久久精品国产久精国产 | 国产一区二 | 激情视频小说图片 | 国产熟睡乱子伦视频观看看 | 被公侵犯肉体中文字幕一区二区 | 欧美成人丝袜一区二区 | 在线亚洲播放 | 欧美国产亚洲精品a第一页 欧美国产一区二区二区 | 性做久久久久久网站 | 久久精品无码一区二区日韩av | 亚洲一级毛片 | 三区在线视频 | 国产在线精品福利大全 | 在线视频亚洲一区 | 91精品国产免费网站 | 一区二区三区在线看 | 国产精品天天看特色大片不卡 | 亚洲国产天堂久久综合 | 亚洲第一区二区快射影院 |