PHP Class Autarky\Files\LockingFilesystem

The object will add a file lock before writing and release it right after the contents have been written. This can be used to prevent corruption of data when multiple requests try to write to the same file at the same time.
Mostra file Open project: autarky/framework Class Usage Examples

Public Methods

Method Description
read ( string $path, boolean $blocking = false ) : string Read from a file.
write ( string $path, string $contents, boolean $blocking = false ) : void Write to the file.

Method Details

read() public method

Read from a file.
public read ( string $path, boolean $blocking = false ) : string
$path string Path to the file.
$blocking boolean Wait for other locks to expire rather than throwing an error when a lock cannot be aquired.
return string

write() public method

Write to the file.
public write ( string $path, string $contents, boolean $blocking = false ) : void
$path string Path to the file.
$contents string Contents to write to the file.
$blocking boolean Wait for other locks to expire rather than throwing an error when a lock cannot be aquired.
return void