How may I turn days from the gmdate();
into hours?
gmdate("d H:i:s", '115932'); // 02 08:12:12
What I want to return is 56:12:12
gmdate("H:i:s", '115932'); // 08:12:12
EDIT: To clarify, I just want to convert a numeric string into the H:i:s format.