Currently when you get youtube duration you get something like PT3M10S.
The code below changes that into 3:10. However I'm looking to only get SECONDS so 190 would be the output.
$duration = str_replace(array("PT","M","S"), array("",":",""),$duration);