file_put_contents touch PHP中创建空文件的代码[file_put_contents vs touch]
人气:0想了解PHP中创建空文件的代码[file_put_contents vs touch]的相关内容吗,在本文为您仔细讲解file_put_contents touch的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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_contents比touch快,大约两倍。
加载全部内容