Answers for "php send response without quitting"

PHP
0

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();
Posted by: Guest on July-17-2021

Code answers related to "php send response without quitting"

Browse Popular Code Answers by Language