codeigniter
Jak ustawić strefę czasową w CodeIgniter
Szukaj…
Jak ustawić strefę czasową w CodeIgniter
Umieszczanie date_default_timezone_set('Asia/Kolkata');
na config.php
powyżej podstawowego adresu URL również działa.
Lista obsługiwanych stref czasowych PHP
application / config.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
date_default_timezone_set('Asia/Kolkata');
Innym sposobem, który uważam za użyteczny, jest ustawienie strefy czasowej dla każdego użytkownika:
Utwórz plik
MY_Controller.php
.Utwórz kolumnę w tabeli
user
którą możesz nazwać strefą czasową lub dowolną inną rzeczą. W ten sposób, gdy użytkownik wybierze swoją strefę czasową, można ustawić jego strefę czasową podczas logowania.
application / core / MY_Controller.php
<?php
class MY_Controller extends CI_Controller {
public function __construct() {
parent::__construct();
$this->set_timezone();
}
public function set_timezone() {
if ($this->session->userdata('user_id')) {
$this->db->select('timezone');
$this->db->from($this->db->dbprefix . 'user');
$this->db->where('user_id', $this->session->userdata('user_id'));
$query = $this->db->get();
if ($query->num_rows() > 0) {
date_default_timezone_set($query->row()->timezone);
} else {
return false;
}
}
}
}
Ponadto, aby uzyskać listę stref czasowych w PHP:
$timezones = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
foreach ($timezones as $timezone) {
echo $timezone;
echo "<br />";
}
Kolejny sposób ustawienia strefy czasowej w kodzie kodu
Alternatywnym sposobem jest ustawienie strefy czasowej w Codeigniter przez rozszerzenie pomocnika daty. Aby to zrobić, należy wykonać następujące czynności dwuetapowe.
- Rozszerz pomocnika daty o następującą funkcję:
if ( ! function_exists('now'))
{
/**
* Get "now" time
*
* Returns time() based on the timezone parameter or on the
* "time_reference" setting
*
* @param string
* @return int
*/
function now($timezone = NULL)
{
if (empty($timezone))
{
$timezone = config_item('time_reference');
}
if ($timezone === 'local' OR $timezone === date_default_timezone_get())
{
return time();
}
$datetime = new DateTime('now', new DateTimeZone($timezone));
sscanf($datetime->format('j-n-Y G:i:s'), '%d-%d-%d %d:%d:%d', $day, $month, $year, $hour, $minute, $second);
return mktime($hour, $minute, $second, $month, $day, $year);
}
}
- Teraz ustaw strefę czasową jako wartość parametru
time_reference
config.php
przykład:$config['time_reference'] = 'Asia/Dhaka';
To wszystko jest ustawione na korzystanie ze strefy czasowej.
FYI: Lista listy stref czasowych została dodana w pierwszym przykładzie.