我来自孟加拉国。我没有从这段代码中获得合适的时间?
<html>
<head>
<title>Server time</title>
</head>
<body>
<p>The time at the server is
<?php
print date('h:i:s A');
?>
</p>
</body>
</html>
输出是:
The time at the server is 08:58:51 PM
但实际时间是01:58:51 AM
答案 0 :(得分:1)
始终使用date_default_timezone_set()功能在脚本中获得正确的时间 在你的情况下使用像这样
<?php
date_default_timezone_set("Asia/Dhaka");
echo date_default_timezone_get();
?>