• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
​
4
<head>
5
    <meta charset="utf-8">
6
    <title>PHP localtime() 函数 实例 - 自学教程(runoops.com)</title>
7
</head>
8
​
9
<body>
10
​
11
    <?php
12
    print_r(localtime());
13
    echo "<br><br>";
14
    print_r(localtime(time(), true));
15
    ?>
16
​
17
</body>
18
​
19
</html>