Welcome Guest, Not a member yet? Register   Sign In
Library: "Dates and Times"
#1

Hello Guys,

i wanne display the time in an other timezone. So tried this:
PHP Code:
        $time  Time::createFromTimestamp(1548131795'America/Chicago''en_US');
        
$time2 Time::createFromTimestamp(1548131795,'Europe/Berlin','de_DE');
        
        echo 
$time2->getTimeStamp().'<br />';
        echo 
$time->getTimeStamp().'<br />';
        echo 
 $time2->toLocalizedString($this->currentUser['TimeFormat']).'<br />';
        echo  
$time->toLocalizedString($this->currentUser['TimeFormat']); 
 
So what i get is this:
_____________________
1548128195
1548153395
22.36.2019 04:36:35
22.36.2019 04:36:35
____________________

I expected to get different times. Because when i wanne make a call with someone in an other timezone... he need his "time" in his format and i need it in mine. Do I use the library wrong ?

Thanks, guys
Reply
#2

I highly recommend using https://carbon.nesbot.com/docs/ library for dates. It's the easiest way to handle dates including timezones.
Codeigniter is simply one of the tools you need to learn to be a successful developer. Always add more tools to your coding arsenal!
Reply
#3

thx for this good tip. But shouldnt be this in the new CI 4 included? I will try your advise and comment.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB