Month day year, etc statistic
#2

you need to do some mathematical calculation to convert a timestamp into desired format like

year = timestamp/(365*24*60*60) % 365
month = timestamp/(30*24*60*60) % 30
week = timestamp/(7*24*60*60) % 7
Days = timestamp/(24*60*60) % 24
Hour = timestamp/(60*60) % 24
Minute = timestamp/(60) % 60
Seconds = timestamp % 60
Reply


Messages In This Thread
Month day year, etc statistic - by DarkMythHunter - 25.12.2018, 08:26
Re: Month day year, etc statistic - by iorp - 25.12.2018, 08:41

Forum Jump:


Users browsing this thread: 2 Guest(s)