Welcome Guest, Not a member yet? Register   Sign In
How save timestamp according to Asia timezone
#1

Hi
I receive timestamp base of UTC and save it into database
Now i need report all data example between 2:30 to 14:43
And i am Tehran with GMT +3:50
Can i save timestamp base of Asia/Tehran timezone or i can only get their base of my favorite timezone?
Can i set timezone to Asia/Tehran on mysql when i use SELECT command?
Thanks
Reply
#2

(02-14-2019, 01:20 PM)omid_student Wrote: Hi
I receive timestamp base of UTC and save it into database
Now i need report all data example between 2:30 to 14:43
And i am Tehran with GMT +3:50
Can i save timestamp base of Asia/Tehran timezone or i can only get their base of my favorite timezone?
Can i set timezone to Asia/Tehran on mysql when i use SELECT command?
Thanks

Hi, not sure is that what are you asking, but you can use mysql date_add and date_sub functions. 

https://dev.mysql.com/doc/refman/5.5/en/...n_date-add
https://dev.mysql.com/doc/refman/5.5/en/...n_date-sub
Reply
#3

In CI4 there is options for timezone setting on
public $appTimezone = 'America/Chicago';
This may help,
In CI3 in application/config.php
date_default_timezone_set('America/Chicago');
Reply
#4

(02-14-2019, 03:02 PM)KoRsar4eg Wrote:
(02-14-2019, 01:20 PM)omid_student Wrote: Hi
I receive timestamp base of UTC and save it into database
Now i need report all data example between 2:30 to 14:43
And i am Tehran with GMT +3:50
Can i save timestamp base of Asia/Tehran timezone or i can only get their base of my favorite timezone?
Can i set timezone to Asia/Tehran on mysql when i use SELECT command?
Thanks

Hi, not sure is that what are you asking, but you can use mysql date_add and date_sub functions. 

https://dev.mysql.com/doc/refman/5.5/en/...n_date-add
https://dev.mysql.com/doc/refman/5.5/en/...n_date-sub

Hi
I need set timezone in mysql and execute query $this->db->where("TIME_FORMAT(FROM_UNIXTIME(time),'%H:%i') >=", $from_time);

Can i define timezone in FROM_UNIXTIME function?
Reply
#5

(02-14-2019, 08:51 PM)rmcdahal Wrote: In CI4 there is options for timezone setting on
public $appTimezone = 'America/Chicago';
This may help,
In CI3 in application/config.php
date_default_timezone_set('America/Chicago');

Thank you but i need change timezone in mysql before execute query
Reply
#6

Finally i used CONVERT_TZ function in MySql
Reply
#7

Finally i used CONVERT_TZ function in MySql
Reply




Theme © iAndrew 2016 - Forum software by © MyBB