PHP uses flock to block write files and non-clogging write files

Source: Internet
Author: User
Tags flock sprintf

PHP uses flock to block write files and non-clogging write files

Block Write code: (All programs will wait for the last program run to run, 30 seconds will time out)

<?php$file = fopen ("Test.txt", "w+"), $t 1 = microtime (TRUE), if (Flock ($file, lock_ex)) {  sleep];  Fwrite ($file, "Write something");  Flock ($file, lock_un);  echo "OK locking file!";} else{  echo "Error locking file!";} Fclose ($file); $t 2 = Microtime (TRUE); Echo sprintf ("%.6f", ($t 2-$t 1));

Non-clogging Write code: (displays error locking file! only if the file is occupied)

<?

Php$file = fopen ("Test.txt", "A +"), $t 1 = microtime (TRUE); if (Flock ($file, lock_ex| LOCK_NB)) { sleep]; Fwrite ($file, "Write something"); Flock ($file, lock_un); echo "OK locking file!";} else{ echo "Error locking file!";} Fclose ($file); $t 2 = Microtime (TRUE); Echo sprintf ("%.6f", ($t 2-$t 1));



PHP uses flock to block write files and non-clogging write files

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.