In PHP, how can I test if a file has already been locked with flock
? For example, if another running script has called the following:
$fp = fopen('thefile.txt', 'w');
flock($fp, LOCK_EX);
In PHP, how can I test if a file has already been locked with flock
? For example, if another running script has called the following:
$fp = fopen('thefile.txt', 'w');
flock($fp, LOCK_EX);
As described in the docs, use
LOCK_NB
to make a non-blocking attempt to obtain the lock, and on failure check the$wouldblock
argument to see if something else holds the lock.