是。你可以这样做:ignore_user_abort(true);set_time_limit(0);ob_start();// do initial processing hereecho $response; // send the responseheader('Connection: close');header('Content-Length: '.ob_get_length());ob_end_flush();ob_flush();flush();// now the request is sent to the browser, but the script is still running// so, you can continue...