次のような状況を想像してみましょう。
<?php
session_start();
someFunction();
?>
<html>
<head>The headers...</head>
<body>Loooooots of content</body>
</html>
<?
executeSomething();
?>
クライアントとの接続が遅く、そのHTML
部分が大きいため転送に時間がかかる場合、転送が完了するexecuteSomething();
まで 2 番目の PHP ブロックがハングしますか?HTML