PHP 写文件加锁的例子
发布:smiling 来源: PHP粉丝网 添加日期:2018-05-31 11:37:07 浏览: 评论:0
用 PHP 的 file_put_contents 函数以追加的方式,循环 10 w 次写文件,耗时很多。因为 file_put_contents 函数每次都要打开文件,写入文件,然后关闭文件。
以下是测试:
- public function handle()
- {
- $testTxt = storage_path('test.txt');
- for ($i = 0; $i < 100000; $i++) {
- $this->comment('writing...');
- file_put_contents($testTxt, 'wo shi tanteng.' . PHP_EOL, FILE_APPEND);
- }
- $this->comment('time:' . round(microtime(true) - LARAVEL_START, 2));
- }
耗时 165.76 秒。现在换一种写文件的方式,使用 fwrite 并且加锁的方式同样循环 10w 次写入,代码如下:
- public function handle()
- {
- $testTxt = storage_path('test2.txt');
- $handle = fopen($testTxt, 'wr');
- flock($handle, LOCK_EX | LOCK_NB);
- for ($i = 0; $i < 100000; $i++) {
- $this->comment('writing...');
- fwrite($handle, 'wo shi tanteng.' . PHP_EOL);
- } //phpfensi.com
- flock($handle, LOCK_UN);
- fclose($handle);
- $this->comment('time:' . round(microtime(true) - LARAVEL_START, 2));
- }
耗时 40.46 s,大大提高了效率。
跟 file_put_contents 函数比,fwrite 提高了写文件的效率,同时使用 flock 进行写文件加锁,防止并发同时操作一个文件。
Tags: 例子 文件
- 上一篇:php 替换目录下文件指定内容
- 下一篇:PHP文件操作详细介绍
相关文章
- ·php读取超大文件实现例子(2014-06-20)
- ·php文件锁类防止并发的例子(2018-09-19)
- ·php 读取目录所有文件信息dir()(2013-11-12)
- ·php获取当前文件所有执行的函数和类(2013-11-12)
- ·php检查文件是否可读和可写(2013-11-14)
- ·PHP文件操作方法问答 (2013-11-14)
- ·PHP 文件操作概述 (2013-11-14)
- ·php文件操作和获取文件信息数据 (2013-11-14)
- ·PHP开发中文件操作疑难问答(2013-11-27)
- ·php判断文件是否存在file_exists 与 is_file详解(2013-11-29)
- ·PHP 获取文件扩展名的方法(2013-11-29)
- ·PHP中读写文件(2013-11-29)
- ·解决php中file_get_contents 读取大文件返回false问题(2013-12-08)
- ·解决file_get_contents遇到中文文件名无法打开问题(2013-12-08)
- ·PHP操作文件问答(2013-12-08)
- ·php文件操作(2013-12-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)