How can I get 24-hour format date (hours and minutes) from milliseconds?
I got this milliseconds value: 1433630097855
I want it to print out the time in hours/minutes. I can't remember exactly what time that was, but I think it's around 00:45
So it should print out like: 00:45
If it was 3 o'clock in afternoon, it should print out something like: 15:25
I couldn't find this conversion for 24h format and when it's 00:xx i tried some but it prints out just "0"
Like:
0:10
I want it like 00: in beginning.
Is there perhaps a quick command for this already in php or do i need some function?