xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP gmdate() 函数 实例 - 自学教程(runoops.com)</title>
</head>
<body>
// Prints the day
echo gmdate("l") . "<br>";
// Prints the day, date, month, year, time, AM or PM
echo '<br />';
echo gmdate("l jS of F Y h:i:s A");
</body>
</html>