How to convert the following seconds into minutes in php
456.83 451.77 263
How to convert to 00:00 minute formatsuch as 10:03
学习是最好的投资!
date('i:s',256.83);
Use gmdate() function
gmdate()
echo gmdate("i:s", 456.83);
Just divide it by 60.
Use
gmdate()
functionJust divide it by 60.