|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-02 15:42 UTC] k.schroeder@php.net
[2002-06-02 16:53 UTC] mfischer@php.net
[2002-06-10 06:36 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 19:00:01 2025 UTC |
flock($fp,2); alwas return false using windows 98. Here a little testcase: $fp=fopen ('myfile.txt','a'); if ( $fp != 0 && flock($fp, 2) ){ fwrite($fp, $mydatas); } else { echo 'error'; } fclose($fp); Other people having the prob: Bug#11828 and 2 users contributed notes (sebastian.theek@gmx.de, manuel.ricca@mail.pt)