PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
print date("i:s", 3599); // result -> 59:59 - right!
print date("H.i:s", 3599); // result -> 01.59:59 - wrong of course!
print date("H.i.s", 3600); // result -> 02.00:00 - Crazy or not!
I've tried with many params but it seems that the hour value is always shifted 1 ahead.