codeigniter
Come impostare il fuso orario in CodeIgniter
Ricerca…
Come impostare il fuso orario in CodeIgniter
Inserimento di date_default_timezone_set('Asia/Kolkata');
anche su config.php
sopra l'URL di base funziona.
Elenco PHP dei fusi orari supportati
application / config.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
date_default_timezone_set('Asia/Kolkata');
Un altro modo che ho trovato utile è se si desidera impostare un fuso orario per ciascun utente:
Crea un file
MY_Controller.php
.Crea una colonna nella tua tabella
user
, puoi chiamarla fuso orario o qualsiasi cosa tu voglia. In questo modo, quando l'utente seleziona il suo fuso orario, può essere impostato sul suo fuso orario al momento dell'accesso.
applicazione / 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;
}
}
}
}
Inoltre, per ottenere l'elenco dei fusi orari in PHP:
$timezones = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
foreach ($timezones as $timezone) {
echo $timezone;
echo "<br />";
}
Un altro modo per impostare il fuso orario in codeigniter
Per impostare il fuso orario in Codeigniter estendendo data helper è un modo alternativo. Per fare ciò è necessario seguire la seguente attività in due fasi.
- Estendi data helper con la seguente funzione:
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);
}
}
- Ora imposta il fuso orario come valore di
time_reference
diconfig.php
come:$config['time_reference'] = 'Asia/Dhaka';
Questo è tutto pronto per l'utilizzo del fuso orario.
FYI: l' elenco della lista del fuso orario è aggiunto nel primo esempio.