尝试使用flock 锁定流,但它不起作用。
$handle = fopen('/path/to/file.txt', 'r');
flock($handle, LOCK_EX); // Returns true
$handle = fopen('compress.zlib:///path/to/file.txt', 'r');
flock($handle, LOCK_EX); // Returns false
为什么想法为什么?
尝试使用flock 锁定流,但它不起作用。
$handle = fopen('/path/to/file.txt', 'r');
flock($handle, LOCK_EX); // Returns true
$handle = fopen('compress.zlib:///path/to/file.txt', 'r');
flock($handle, LOCK_EX); // Returns false
为什么想法为什么?