日期助手TimeZone_Menu在CodeIgniter中的功能



我正在使用 timezone_menu函数,并且它运行完美。

我存储了时区数据库,并在我的Web应用程序中显示您已配置我的客户端的格式的日期和时间。

我的问题是,现在我有一个客户危地马拉,告诉我您的时区与墨西哥中心不同。有一个时区-6(中央标准时间 - 墨西哥中心),但说一年中的某个时间与墨西哥中心时与危地马拉不合时间。

例如,在Windows,在段落时区,如果我的客户使用中美洲,而不是 guadalajara,则 guadalajara,Monterrey 。谁能帮我?

我认为您正在遇到问题,因为您缺乏存储所需数据所需的时区列表。

我想说的是,每个时区条目都会归一化,因此:为每个可能的时区进行时区条目,将其存储在数据库中,然后从数据库中渲染选项。然后,将用户的时区存储在其设置中是一个简单的问题。

然后,您可以轻松地从一个时区转换为另一个时区。将所有数据存储作为UTC偏移。然后在用户的时区中渲染它们。

eg, $dt = new DateTime ( NULL, new DateTimeZone('UTC'));
$dt->setTimeZone(new DateTimeZone($this->My_timezones_model->get_tz(12)));

控制器:

$this->load->model('My_timezones_model');
echo $this->My_timezones_model->get_select(2);

模型:

<?php if ( defined('BASEPATH') === FALSE ) exit('No direct script access allowed');
class My_timezones_model extends CI_Model
{
    function __construct()
    {
        parent::__construct();
        $this->create();
    }
    function create()
    {
        if( $this->db->table_exists('my_timezones')  == FALSE)
        {
            $this->db->query( "CREATE TABLE `my_timezones` (
                `tz_id` int unsigned not null auto_increment,
                `tz_continent` varchar(12) not null comment 'the continent',
                `tz_city` varchar(14) not null comment 'the city',
                PRIMARY KEY (`tz_id`)
            ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;");
            $arr = array();
            $identifiers = DateTimeZone::listIdentifiers();
            foreach ($identifiers as $identifer)
            {
                $tmp = explode('/',$identifer);
                if ((isset($tmp[1])) && ($tmp[1]))
                {
                    $arr[] = array('tz_continent' => $tmp[0],'tz_city'=>$tmp[1]);   
                }
            }
            $this->db->insert_batch('my_timezones',$arr);
        }
    }
    function get_select($selected_tz_id=FALSE)
    {
        // returns a select
        $timezones = $this->db->get('my_timezones')->result();
        $select = '<select>';
        $optgroup = FALSE;
        foreach ($timezones as $timezone)
        {
            if ($optgroup === FALSE )
            {
                $select .= "<optgroup label='$timezone->tz_continent'>";
                $optgroup = $timezone->tz_continent;
            }
            if ($timezone->tz_continent != $optgroup)
            {
                $select .= "</optgroup><optgroup label='$timezone->tz_continent'>";
                $optgroup = $timezone->tz_continent;
            }
            $select .="<option value='$timezone->tz_id'";
            if ($timezone->tz_id == $selected_tz_id)
            {
                $select .= " selected='selected' ";
            }
            $select .=">$timezone->tz_city</option>";
        }
        $select .="</optgroup></select>";
        return $select;
    }
    function get_continents()
    {
        // returns a list of continents
        return $this->db->select('tz_continent')->group_by('tz_continent')->order_by('tz_sort_order')->get($this->get('table_name'))->result();
    }
    function get_tz($id)
    {
        // input of the tz_id
        // returns a string of the timezone in format: Continent/City, eg Australia/Hobart, or NULL if the ID is not found.
        $this->db->select("concat(`tz_continent`,'/',`tz_city`) as tz",FALSE)
            ->from($this->get('table_name'))
            ->where('tz_id',$id);
        $q = $this->db->get();
        $r = NULL;
        if ( $q->num_rows()  == 1 )
        {
            $r = str_replace(' ','_',$q->first_row()->tz);
        }
        return $r;
    }
}

相关内容

  • 没有找到相关文章

最新更新