Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php send response without quitting

ob_end_clean();
ignore_user_abort(true);
ob_start();
header("Connection: close");
header("Content-Length: " . ob_get_length());
ob_end_flush();
flush();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #php #send #response #quitting
ADD COMMENT
Topic
Name
7+8 =