Please help to convert from "MM:SS.MS" to "SS.MS" in PHP?
Thanks!
Please help to convert from "MM:SS.MS" to "SS.MS" in PHP?
Thanks!
You can use:
(new DateTime())->createFromFormat('G:s.u', '15:35.123')->format('s.u');
or just
explode(':', '15:23.123')[1];