xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHP time() 函数 实例 - 自学教程(runoops.com)</title>
</head>
<body>
<?php
$t = time();
echo ($t . "<br>");
echo (date("Y-m-d", $t));
?>
</body>
</html>