VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP 写文件加锁的例子

用 PHP 的 file_put_contents 函数以追加的方式,循环 10 w 次写文件,耗时很多。因为 file_put_contents 函数每次都要打开文件,写入文件,然后关闭文件。

以下是测试:

  1. public function handle() 
  2.     $testTxt = storage_path('test.txt'); 
  3.     for ($i = 0; $i < 100000; $i++) { 
  4.         $this->comment('writing...'); 
  5.         file_put_contents($testTxt'wo shi tanteng.' . PHP_EOL, FILE_APPEND); 
  6.     } 
  7.     $this->comment('time:' . round(microtime(true) - LARAVEL_START, 2)); 

耗时 165.76 秒。现在换一种写文件的方式,使用 fwrite 并且加锁的方式同样循环 10w 次写入,代码如下:

  1. public function handle() 
  2.     $testTxt = storage_path('test2.txt'); 
  3.     $handle = fopen($testTxt'wr'); 
  4.     flock($handle, LOCK_EX | LOCK_NB); 
  5.     for ($i = 0; $i < 100000; $i++) { 
  6.         $this->comment('writing...'); 
  7.         fwrite($handle'wo shi tanteng.' . PHP_EOL); 
  8.     } //phpfensi.com 
  9.     flock($handle, LOCK_UN); 
  10.     fclose($handle); 
  11.     $this->comment('time:' . round(microtime(true) - LARAVEL_START, 2)); 

耗时 40.46 s,大大提高了效率。

跟 file_put_contents 函数比,fwrite 提高了写文件的效率,同时使用 flock 进行写文件加锁,防止并发同时操作一个文件。

 

出处:http://www.phpfensi.com/php/20180531/10734.html


相关教程