将基于州和国家/地区的时区添加到MYSQL表中

时间:2011-10-12 15:51:40

标签: php mysql timezone

我有一个mysql表,其中包含(名称,地址,性别,城市州,邮政编码,国家/地区,时区等)数据当用户填写表单以添加此数据时,我希望添加相关的时区根据州和国家,我该怎么做?

谢谢,

1 个答案:

答案 0 :(得分:1)

为什么表单中没有以下选择框?

 $list = DateTimeZone::listAbbreviations();

    $idents = DateTimeZone::listIdentifiers();

    $data = $offset = $added = array();
    foreach ($list as $abbr => $info) {
        foreach ($info as $zone) {
            if ( ! empty($zone['timezone_id'])
                AND
                ! in_array($zone['timezone_id'], $added)
                AND 
                  in_array($zone['timezone_id'], $idents)) {
                $z = new DateTimeZone($zone['timezone_id']);
                $c = new DateTime(null, $z);
                $zone['time'] = $c->format('H:i a');
                $data[] = $zone;
                $offset[] = $z->getOffset($c);
                $added[] = $zone['timezone_id'];
            }
        }
    }

    array_multisort($added, SORT_ASC, $data);
    $options = array();
    foreach ($data as $key => $row) {
        $options[$row['timezone_id']] = $row['time'] . ' - '
                                        . formatOffset($row['offset']) 
                                        . ' ' . $row['timezone_id'];
        $values[$row['timezone_id']] = $row['time'] . '/'
                                        . formatOffset($row['offset']) 
                                        . '/' . $row['timezone_id'];
    }


function formatOffset($offset) {
        $hours = $offset / 3600;
        $remainder = $offset % 3600;
        $sign = $hours > 0 ? '+' : '-';
        $hour = (int) abs($hours);
        $minutes = (int) abs($remainder / 60);

        if ($hour == 0 AND $minutes == 0) {
            $sign = ' ';
        }
        return 'GMT' . $sign . str_pad($hour, 2, '0', STR_PAD_LEFT) 
                .':'. str_pad($minutes,2, '0');

}

echo "<select name='locale'>";
foreach($options as $key=>$value){
    echo "<option value='".$values[$key]."'>".$value."</option>";
}
echo "</select>";

这将处理存在多个时区的状态。当您获得此表单提交的结果时,您可以在'/'上展开字段的值,其中$_POST['locale']是所选select选项的处理程序,然后您可以从中提取时区,国家/地区和州单场。

$locale=explode("/",$_POST['locale']);
// $locale[0] = timezone
// $locale[1] = country
// $locale[2-n] = state(s)