aharavenka/filelock
最新稳定版本:1.0.0
Composer 安装命令:
composer require aharavenka/filelock
包简介
Simple php library providing OOP-interface to file locks.
README 文档
README
Simple php library providing OOP-interface to file locks.
Installation
composer require dorantor/filelock
Usage
<?php // create lock object $lock = new \Dorantor\FileLock('path/to/file'); // ..and work with it if ($lock->acquire()) { // file is locked $lock->release(); } // ..or it could be if (!$lock->acquire()) { // failed with lock return; } // file was locked $lock->release();
Credits
Idea, interfaces and some code shamelessly taken from benconstable/lock.
统计信息
- 总下载量: 2
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-03-18