dosryjij88555 2015-06-24 06:58
浏览 50
已采纳

PHP时间与我的服务器不匹配

My computer clock show me 11:58 PM but my PHP clock show me 07:58 PM, Why that happen I don't know but I try many kind of codes but that doesn't work. this is my screen shot of my problem;

enter image description here

  • 写回答

4条回答 默认 最新

  • doujianguang5506 2015-06-24 07:08
    关注

    It is very simple I was tested in my localhost, here is the solution.

    <?php
    
    $hoursver = "4"; // hours set and adjust you time properly
    
    // time is behind the server time
    $timeadjust = ($hoursver * 3600);
    
    $real_time = date("Y-m-d h:i:s",time() + $timeadjust);
    
    
    echo $real_time;
    ?>
    

    here is the result:

    enter image description hereenter image description here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?