我有一个广播网站,有一个名为" upNext"当下一个DJ来临时,该模块将向我的访客显示。
但是网站上的时间不对。
http://sabfm.org//staff/_frontend/upnext.php从10:00开始显示,但我在瑞典的时间很快是13:00。我该如何解决这个问题?
我有som代码:
<?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;
}
在globe.php中我有:
session_start();
putenv( "TZ=UTC" );
有人可以帮助我吗?
答案 0 :(得分:2)