<?php $tests = ['0m12.345s', '2m34.567s']; foreach ($tests as $test) { sscanf($test, '%dm%f', $minutes, $seconds); $seconds += $minutes * 60; echo $seconds . PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.