如何设置时间到瑞典



我有一个电台网站,有一个名为"upNext"的模块,该模块将在下一个DJ到来时显示我的访问者。

但是现在是错误的时间。

http://sabfm.org//staff/_frontend/upnext.php显示从10:00开始,但我在瑞典的时间很快就到了13:00。我该如何解决这个问题?

我有一些代码:

<?php
    // Include the required glob.php file
    require_once( "../_inc/glob.php" );
    // Grab today's date using PHP date()
    $today_date = date( 'N' );
    // Grab the current hour
    $now_hour = date( 'H' );
    // Now we have the current hour, we add one to get the next hour
    $next_hour = $now_hour + 1;
    if ( $next_hour == 24 ) {
        // It's midnight on the next day
        $next_date = $today_date + 1;
        $next_hour = "0";
    }
    else {
    // It's the same day
    $next_date = $today_date;
}

在global。php中有:

session_start();
    putenv( "TZ=UTC" );

有人能帮帮我吗?

设置时区

date_default_timezone_set("Europe/Stockholm");  

有关时区的更多信息,请查看此链接:PHP时区

相关内容

  • 没有找到相关文章

最新更新