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 8908951
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:18:51+00:00 2026-06-15T03:18:51+00:00

In my php script I want to output data to the browser then sleep()

  • 0

In my php script I want to output data to the browser then sleep() for 2 seconds before running a function. The below doesnt seem to output the json before sleeping, anyone got any ideas?

if ($_POST['process'] == '1') {
    // adding stuff to $data here
    }

    echo json_encode($data);
    ob_flush();
    flush();
    sleep(2);
    // Do something else
}
  • 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-15T03:18:52+00:00Added an answer on June 15, 2026 at 3:18 am

    Yep, this is how you do it. Basically, you close the connection and return the response to the user while apache continues to process the file…

    ignore_user_abort(true);
    header('Content-Type: application/json');
    header('Connection: close');
    header('Content-Length: ' . strlen($YOUR_JSON_RESPONSE));
    
    echo $YOUR_JSON_RESPONSE;
    flush();
    
    sleep(2);
    your_cool_function_to_run();
    die();
    

    Works great for quick ajax calls that need an immediate response and/or take a long time to actually do the work.

    I must warn you to use this type of thing sparingly… Each time this happens a new process/thread is opened up to handle the remainder of your request. Do too many too fast and you’ll run out of processes. (Depending on your setup)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to output data with variable length in columns in a php-cli script
I want a PHP script that adds some data at the end of a
I have a php script that is running in CLI and I want to
This PHP script prints all the data minus the XML to the browser (I'm
I'm using TinyMCE and want to execute a php script get the output and
I've got a basic php script that runs perfect in a browser. I want
I have a html_headers.inc.php script that I want to include in every script on
I want a PHP script which allows you to ping an IP address and
I want obtain full URL adres in php script, tell please, this code always
I want to write a php script that keeps the apache_log file open and

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.