Gamestudio Links
Zorro Links
Newest Posts
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (degenerate_762, AbrahamR, AndrewAMD, ozgur), 667 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Hour and minute from unixtime #477235
06/04/19 12:36
06/04/19 12:36
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline OP
Senior Member
Grat  Offline OP
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Hi,

i get from outside source data with timestamp in the unixtime.
Code:
uTime = "1559651639";
// convert to time
dTime=wdatef("t",uTime);



Q: how to get minute and hour from uTime?

I found only this:

atoi(strdate("%H",dTime));

for hour


Thanks

Last edited by Grat; 06/04/19 12:41.
Re: Hour and minute from unixtime [Re: Grat] #477241
06/05/19 05:32
06/05/19 05:32
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
C puzzle: How do you get minute and hour from dTime without string conversion? Solution in the next days.

Re: Hour and minute from unixtime [Re: jcl] #477262
06/07/19 13:49
06/07/19 13:49
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
No takers...

Hour = (int)((dTime-floor(dTime))*24);
Minute = (int)((dTime-floor(dTime))*1440) % 60;

Re: Hour and minute from unixtime [Re: jcl] #477263
06/07/19 14:33
06/07/19 14:33
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline OP
Senior Member
Grat  Offline OP
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
laugh


// define
#define Date2Hour(dt) (int)((dt-floor(dt))*24)

use:

Hour = Date2Hour( var );


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1