The actual effect of PHP’s unset() function
Strongly recommend everyone to share this kind of technical article if you have nothing to doThe cost and release of memory by PHP variables, and whether unset() really releases the memory. Reposted from: The actual effect of PHP’s unset() function
The test code is as follows: Copy PHP content to clipboard
PHP code:
<font face="NSimsun"><span style="color: #007700">for ( <code id="code0" style="font-size: 12px"><font face="NSimsun"><span style="color: #007700">for ( </span><span style="color: #0000bb">$i </span><span style="color: #007700">= </span><span style="color: #0000bb">1</span><span style="color: #007700">; </span><span style="color: #0000bb">$i </span><span style="color: #007700"><span style="color: #0000bb">100</span><span style="color: #007700">; </span><span style="color: #0000bb">$i</span></span></font><font face="NSimsun"><span style="color: #007700">++ ) {<br>
</span><span style="color: #0000bb">$str </span><span style="color: #007700">= </span><span style="color: #0000bb">str_repeat</span><span style="color: #007700">(</span><span style="color: #dd0000">'01234567'</span><span style="color: #007700">, </span><span style="color: #0000bb">$i</span></font><font face="NSimsun"><span style="color: #007700">);<br>
</span><span style="color: #0000bb">$a </span><span style="color: #007700">= </span><span style="color: #0000bb">memory_get_usage</span></font><font face="NSimsun"><span style="color: #007700">();<br>
unset(</span><span style="color: #0000bb">$str</span></font><font face="NSimsun"><span style="color: #007700">);<br>
</span><span style="color: #0000bb">$b </span><span style="color: #007700">= </span><span style="color: #0000bb">memory_get_usage</span></font><font face="NSimsun"><span style="color: #007700">();<br>
echo </span><span style="color: #dd0000">"n<br>" ></span><span style="color: #007700">.</span><span style="color: #0000bb">$i</span><span style="color: #007700">.</span><span style="color: #dd0000">': '</span><span style="color: #007700">.(</span><span style="color: #0000bb">$b </span><span style="color: #007700">- </span><span style="color: #0000bb">$a</span><span style="color: #007700">).</span><span style="color: #dd0000">' Bytes.'</span></font><font face="NSimsun"><span style="color: #007700">;<br>
}</span></font>
$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.'
;
}
It can be seen from the results: 8 x 32 = 256 It is really necessary to release the memory when it is 256 bytes long. Some people say that it is faster than directly $str = null.
Here are the actual results:
The results are as follows:
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把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
