2

これを機能させるために、この関数の最後の行が必要なのはなぜですか? ここで何が起こっているのかわかりません。しかし、それは機能します。

function close_connection() {
    // if we're using sessions this stops them from hanging on other requests
    session_write_close();
    // get the content length from the buffer (the whole point of the buffer)
    header('Content-Length: 0');
    // close the connection
    header('Connection: close');
    // flush the buffers to the screen
    flush();

    // connection closing doesn't work without this. I don't know why
    echo ' ';
}
4

1 に答える 1