服务器时间与本地时间不同

时间:2018-03-24 20:06:41

标签: php

我来自孟加拉国。我没有从这段代码中获得合适的时间?

 <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

1 个答案:

答案 0 :(得分:1)

始终使用date_default_timezone_set()功能在脚本中获得正确的时间 在你的情况下使用像这样

<?php
    date_default_timezone_set("Asia/Dhaka");
    echo date_default_timezone_get();
?>