config/autoload.php में, प्रत्येक पृष्ठ लोड पर लोड करने के लिए एक मॉडल सेट करें। फिर कॉल करें $this->db->query("SET time_zone='+0:00'"); उस मॉडल कंस्ट्रक्टर में।
config/autoload.php
$autoload['model'] = array('default_model');// for ex, "say default_model"
एप्लिकेशन/मॉडल में, "default_model.php" नाम से एक नई मॉडल फ़ाइल बनाएं और नीचे कोड जोड़ें।
एप्लिकेशन/मॉडल/default_model.php
class Default_model extends CI_Model {
function __construct()
{
// Call the Model constructor
parent::__construct();
$this->db->query("SET time_zone='+0:00'");
}
}
प्रत्येक पेज लोड होने पर, इस कंस्ट्रक्टर को कॉल किया जाएगा और mysql टाइमज़ोन +0:00 पर सेट किया जाएगा।