案例:PHP案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<!DOCTYPE html>
3
<html>
4
<body>
5
6
<?php
7
$d=strtotime("tomorrow");
8
echo date("Y-m-d h:i:sa", $d) . "<br>";
9
10
$d=strtotime("next Saturday");
11
echo date("Y-m-d h:i:sa", $d) . "<br>";
12
13
$d=strtotime("+3 Months");
14
echo date("Y-m-d h:i:sa", $d) . "<br>";
15
?>
16
17
</body>
18
</html>
19