Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. $file = fopen("test.txt","w+");
  3.  
  4. if (flock($file,LOCK_EX))
  5. {
  6. fwrite($file,"Write something");
  7. sleep(10);
  8. flock($file,LOCK_UN);
  9. }
  10. else
  11. {
  12. echo "Error locking file!";
  13. }
  14.  
  15. fclose($file);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement