亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

PHP中創(chuàng)建空文件的代碼[file_put_contents vs touch]

 更新時間:2012年01月20日 13:11:54   作者:  
php中用file_put_contents比touch快,大約兩倍左右。
I has passed a small test to check which function is faster to create a new file.

file_put_contents vs touch
復制代碼 代碼如下:

<?php
for($i = ; $i < 100; $i++)
{
file_put_contents('dir/file'.$i, '');
}
?>

Average time: 0,1145s
復制代碼 代碼如下:

<?php
for($i = ; $i < 100; $i++)
{
touch('dir/file'.$i);
}
?>

Average time: 0,2322s

所以,file_put_contentstouch快,大約兩倍。

相關文章

最新評論