PHP中创建空文件的代码[file_put_contents vs touch]
时间:2021-01-03 15:29:29|栏目:PHP代码|点击: 次
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快,大约两倍。
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快,大约两倍。
栏 目:PHP代码
本文标题:PHP中创建空文件的代码[file_put_contents vs touch]
本文地址:http://www.codeinn.net/misctech/39819.html