Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8928433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:26:08+00:00 2026-06-15T08:26:08+00:00

I need to put on a php script that has to serve only one

  • 0

I need to put on a php script that has to serve only one request at a time. That is, if a user requests the page, it must not serve him until a previous request is not completely handled.

I would play with application variables in order to accomplish that, but I see that php doesn’t have anything like that, if I well understood.

I tried to use apc then, putting together this code:

<?php

  while (apc_fetch('foo')) {
    echo "waiting...\n";
    sleep(1);
  }

  $foo = true;
  apc_store('foo', $foo);

  echo "results.";
  sleep(10);

  apc_delete('foo');

?>

but if I open twice this page, what I see is just results. in both. I was expecting to read some waiting... as well, since when I load the page for the second time, the first one should have set foo to true.

Is this a legit (but mistaken) use of apc? Am I using the wrong tool?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:26:09+00:00Added an answer on June 15, 2026 at 8:26 am

    I don’t like to answer to my own questions, but in the end this is the most simple way I found to do what I wanted:

    <?php
    
    $fp = fopen("lock.txt", "r");
    
    if (flock($fp, LOCK_EX)) {  // acquire
    
      echo "processing...";
    
      //if (isset($_GET['sleep'])) sleep(5); // decomment this line to test:
                                             // load "script.php?sleep=1" and then
                                             // load "script.php". The second page will
                                             // wait until the first one ends.
    
      flock($fp, LOCK_UN); // release
    
    } else {
      // exception handling
      echo "ERROR: unable to flock()";
    }
    
    fclose($fp);
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need help with a Remote Upload Script that has a page named 'uploadHandler.php'.
I need to put some links in one TextView . For better user experience,
i want to put a php script in to a page on a wordpress
I have a product catalog using apache, php and mysql. I need to put
I need to put one of my test cases into a pending state. I
I need to put in my android applicazion a tool that uses the free
just like the title I need help in a php script gets name node
My backend is PHP I have a service that I want to put out
I'm setting up a PHP script that will have emails piped to it from
I'm having some problems with the php script below that I'm currently working on.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.