Specifying the LOCK_NB flag to flock() instructs PHP to
Return immediately if someone else is holding the lock.
Correct:
Return immediately if someone else is holding the lock.
The correct answer is A.The LOCK_NB flag instructs PHP to take a nonblocking lock, which immediately fails if another process holds the lock.