<!DOCTYPE html>
<html>
<body>
<?php
echo date('h:i:s') . "<br>";
// 暂停 3 秒
sleep(3);
// 重新开始
echo date('h:i:s');
?>
</body>
</html>