php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #81322 file_put_contents should support LOCK_NB
Submitted: 2021-08-02 12:46 UTC Modified: -
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: divinity76 at gmail dot com Assigned:
Status: Open Package: *Directory/Filesystem functions
PHP Version: Next Minor Version OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
46 - 15 = ?
Subscribe to this entry?

 
 [2021-08-02 12:46 UTC] divinity76 at gmail dot com
Description:
------------
file_put_contents should support LOCK_NB just like it supports LOCK_EX.

luckily file_put_contents does not currently support any flags with the same value as LOCK_NB( LOCK_NB is 4 and FILE_USE_INCLUDE_PATH is 1 and FILE_APPEND is 8)

Test script:
---------------
<?php
$file=__FILE__;
$fp=fopen($file,"rb");
flock($fp,LOCK_EX);
var_dump(file_put_contents($file,"test",LOCK_EX|LOCK_NB));

Expected result:
----------------
bool(false) and perhaps some error about being unable to lock.

Actual result:
--------------
script hangs indefinitely, because file_put_contents doesn't understand LOCK_NB

Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 02:01:30 2024 UTC