• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP gmdate() 函数 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
    // Prints the day
11
    echo gmdate("l") . "<br>";
12
    // Prints the day, date, month, year, time, AM or PM
13
    echo '<br />';
14
    echo gmdate("l jS of F Y h:i:s A");
15
    ?>
16
​
17
</body>
18
​
19
</html>