时区和夏季CodeIgniter

时间:2015-05-28 15:27:10

标签: php codeigniter timezone dst timezone-offset

我搜索更好的解决方案,查看我网站所有用户的当地时间。

夏天我遇到了问题,如果你有更好的方法帮助我,我实际上得到了这个功能:

function timezone_by_offset($offset) {


 $abbrarray = timezone_abbreviations_list();
    $offset = $offset * 60 * 60;

    foreach ($abbrarray as $abbr) {
        foreach ($abbr as $city) {
            if ($city['offset'] == $offset && $city['dst'] == TRUE) { 
                return $city['timezone_id'];                                
            }
        }
    }
    return 'UTC'; // any default value you wish
}
echo timezone_by_offset(1) . '<br/>';  
echo (date_default_timezone_set(timezone_by_offset(1)) == TRUE ? 'Valid'. date('Y-m-d H:i:s') : 'Not Valid'). '<br/>';

解决方案:

<?php
 function get_timezones() 
 {
    $o = array();
    $t_zones = timezone_identifiers_list();
    foreach($t_zones as $a)
    {
        $t = '';

        try
        {
            //this throws exception for 'US/Pacific-New'
            $zone = new DateTimeZone($a);

            $seconds = $zone->getOffset( new DateTime("now" , $zone) );
            $hours = sprintf( "%+02d" , intval($seconds/3600));
            $minutes = sprintf( "%02d" , ($seconds%3600)/60 );

            $t = $a ."  [ $hours:$minutes ]" ;

            $o[$a] = $t;
        }

        //exceptions must be catched, else a blank page
        catch(Exception $e)
        {
            //die("Exception : " . $e->getMessage() . '<br />');
            //what to do in catch ? , nothing just relax
        }
    }

    ksort($o);

    return $o;
} 

$o = get_timezones();
?>

<html>
<body>
<select name="time_zone">
<?php
    foreach($o as $tz => $label)
    {
        echo "<option value="$tz">$label</option>";
    }
?>
</select>
</body>
</html>

最诚挚的问候。

1 个答案:

答案 0 :(得分:0)

更新3
第1部分 - 寻找正确的时区
如果您在偏移量和HAS夏令时的帮助下查找timezone_name,则将timezone_name_from_abbr()的第三个参数设置为true,否则设置为false。如果将其设置为1并且偏移+夏令时未提供有效的timezone_name,则它将返回false。在这种情况下,您可以将其恢复为假 实施例

$tz = timezone_name_from_abbr(null, $offset * 3600, true);
if($tz === false) $tz = timezone_name_from_abbr(null, $offset * 3600, false);

第2部分 - 根据日光节省获取当地日期/时间 您无需在此处执行任何操作,一旦设置了时区,PHP日期功能会根据您的时区和CURRENT日期自动设置夏令时。所以

function print_according_to_offset($offset)
{

    $tz = timezone_name_from_abbr(null, $offset, true); //If a ofset with daylight savings is found
    if($tz === false) $tz = timezone_name_from_abbr(null, $offset, false); //otherwise
    if($tz === false) // If no timezone is still found
    {
        echo 'Invalid Offset <br />';
        return;
    }
    $otherTZ  = new DateTimeZone($tz); 
    $datetime = new DateTime; // current time = server time
    $datetime->setTimezone($otherTZ);
    echo $tz . '<br />';
    echo $datetime->format('Y-m-d H:i:s') .'<br /><br />';
}

print_according_to_offset(19800);

更新2

<?php
$timezone = '+0:00';
$timezone = preg_replace('/[^0-9]/', '', $timezone) * 36;
$timezone_name = timezone_name_from_abbr(null, $timezone, true);
date_default_timezone_set($timezone_name);
echo date('D d M Y H:i:s');
?>

More information
更新
CI功能和改进的代码

function print_according_to_offset($offset)
{
    $user_timezone =  timezone_name_from_abbr("",$offset,0);
    $otherTZ  = new DateTimeZone($user_timezone);
    $datetime = new DateTime; // current time = server time
    $datetime->setTimezone($otherTZ);
    echo $datetime->format('Y-m-d H:i:s') .'<br />';
}

print_according_to_offset(14400); //EXAMPLE

不要指望我们为你做所有事情,编辑功能并返回$ otherTZ,如果你只需要获得时区。
旧帖子
我认为这就是你所需要的。

$offset = 3600 ; //your offset
$my_timezone =  timezone_name_from_abbr("",$offset,0);

date_default_timezone_set($my_timezone);
echo date('Y-m-d H:i:s');

More info