php7安装教程地址:
http://www.hcoder.net/books/read_10101.html
传说php7 运行效率极高,是真的吗?我来亲自试试,代码如下:
<?php $stratTime = microtime(true); $startMemory = memory_get_usage(); $a = 1;for($i = 1; $i <= 100000; $i++){ $a++;}echo $a;$endTime = microtime(true);$runtime = ($endTime - $stratTime) * 1000; //将时间转换为毫秒$endMemory = memory_get_usage(); $usedMemory = ($endMemory - $startMemory) / 1024;echo "运行时间: {$runtime} 毫秒<br />";echo "耗费内存: {$usedMemory} K";
以上代码是记录php运行100000次循环需要的时间和消耗的内存。
php7运行情况
100001运行时间: 3 - 7 毫秒耗费内存: 0.109375 K
php5.5运行情况
100001运行时间: 18 - 30 毫秒耗费内存: 0.671875 K
时间节省了6倍,内存节省了6倍,非常不错的数据!
原创文章,作者:SCEXL,如若转载,请注明出处:http://www.wangzhanshi.com/n/8662.html