x
 
<!DOCTYPE html>
<html>
<body>
<?php
$t = date("H");
if ($t < "20") {
  echo "白天愉快!";
} else {
  echo "晚上好!";
}
?>
 
</body>
</html>