Is there a way to prevent a php script from sending a http response when the script is finished executing? If not in php is it possible in any-other common web scripting langues?
+2
A:
I believe that would be something controlled by the web server, not the scripting language.
Tim Lytle
2009-11-16 22:22:38
Agreed. PHP just terminate the script. Then Apache replies back to the client to send "no data" in addition to a header 200 OK.
Savageman
2009-11-16 22:25:22