PHP中创建空文件的代码[file_put_contents vs touch]_php技巧
程序员文章站
2022-05-13 21:00:55
...
I has passed a small test to check which function is faster to create a new file.
file_put_contents vs touch
for($i = ; $i {
file_put_contents('dir/file'.$i, '');
}
?>
Average time: 0,1145s
for($i = ; $i {
touch('dir/file'.$i);
}
?>
Average time: 0,2322s
所以,file_put_contents比touch快,大约两倍。
file_put_contents vs touch
复制代码 代码如下:
for($i = ; $i {
file_put_contents('dir/file'.$i, '');
}
?>
Average time: 0,1145s
复制代码 代码如下:
for($i = ; $i {
touch('dir/file'.$i);
}
?>
Average time: 0,2322s
所以,file_put_contents比touch快,大约两倍。
上一篇: SQLServer数据库语句大全汇总
下一篇: php实现购物车功能(下)_php技巧
推荐阅读