在“加载”内容之前,如何要求 PHP 先处理和显示 html 的外层?例如,
<html>
<body>
<p>Please wait, we are processing your request</p>
<?php include 'article.php';?>
</body>
</html>
我想先在客户端浏览器上打印这个,
<html>
<body>
<p>Please wait, we are processing your request</p>
</body>
</html>
在展示这里包含的任何内容之前,
<?php include 'article.php';?>
可能吗?