filelock
v1.0.0
파일 잠금에 OOP 인터페이스를 제공하는 간단한 PHP 라이브러리입니다.
composer require dorantor/ filelock
<?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 ();
아이디어, 인터페이스 및 일부 코드는 benconstable/lock에서 뻔뻔하게 가져왔습니다.