I think it would be better if your application sended multiple requests (one request each 5 secs) to get data.
Main Topics
Browse All TopicsI want to display some value from database in realtime using PHP. Some application connects to the HTTP server and reads the output of my PHP script with the following structure:
<?
header("Content-type: text/plain");
# Connect to database
...
# Endless loop
while (true) {
sleep(5); # Sleep 5 seconds
# Execute the database query
...
echo("...\n"); # Echo results
flush(); # Flush output buffer
}
?>
My configuration is Apache 2.0.52 + php4
What happens when the application closes the TCP connection? Has the script below shutdown correctly? Are the resources allocated for the script instance freed?
The links to the corresponding docs are greatly appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
DanFG: Thank you. Now it is clear for me: when the connection is aborted (by client) or timed out (in the case that the channel fails) the script execution is terminated and all resources (such as database handles) are freed. I can use the PHP's register_shutdown_function
ZhaawZ: Why?
Business Accounts
Answer for Membership
by: DanFGPosted on 2005-07-15 at 15:57:38ID: 14455500
msa2003, PHP usually frees any allocated resources automatically when connection times out or is aborted. () (http://www.php.net/manual /en/functi on.registe r-shutdown - function. php).
/en/functi on.set-tim e-limit.ph p).
You can register functions to take care of freeing resources by using PHP's register_shutdown_function
Regarding your question, PHP handles endless loops by establishing a time limit for every process. The timeout is usually 30 seconds, it can be set on php.ini or with the set_time_limit() function (http://www.php.net/manual