|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-10-12 14:44 UTC] tony2001@php.net
[2006-10-13 06:47 UTC] php at koterov dot ru
[2006-10-13 08:34 UTC] tony2001@php.net
[2006-10-13 13:38 UTC] php at koterov dot ru
[2006-10-13 13:43 UTC] tony2001@php.net
[2006-10-13 14:12 UTC] php at koterov dot ru
[2006-10-13 14:20 UTC] tony2001@php.net
[2006-10-13 19:06 UTC] php at koterov dot ru
[2006-10-14 13:09 UTC] tony2001@php.net
[2006-10-22 01:00 UTC] php-bugs at lists dot php dot net
[2007-05-28 10:50 UTC] bugreporter at sigproc dot de
[2010-01-14 14:21 UTC] sp at vovochka dot org dot ua
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 17:00:02 2025 UTC |
Description: ------------ <?php @session_write_close(); // be on the safe side $f = fopen('/tmp/f.lck', 'a+'); var_dump(flock($f, LOCK_EX | LOCK_NB, $w)); var_dump($w); sleep(5); ?> When I run this script concurrently, all results are same: "bool(true) int(0)". Seems LOCK_NB simply ignored. P.S. There is a lot of same bugs (e.g., http://bugs.php.net/bug.php?id=31363 etc.), but they are closed or outdated.