xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>PHP strftime() 函数 实例 - 自学教程(runoops.com)</title>
</head>
<body>
echo(strftime("%B %d %Y, %X %Z",mktime(20,0,0,12,31,98))."<br>");
setlocale(LC_ALL,"hu_HU.UTF8");
echo(strftime("%Y. %B %d. %A. %X %Z"));
</body>
</html>