i have the problem about result strtotime in php from getID3, this result is 02:00:00 but i want to result is 00:02:00, how can change it ? please help and thanks
$durasi = getDuration($direktori);
$endtime = date('H:i:s', strtotime($durasi));
function getDuration($file){
include_once("getID3/getid3/getid3.php");
$getID3 = new getID3;
$file = $getID3->analyze($file);
return $file['playtime_string'];
}
The
playtime_stringreturns minutes and seconds (m:s). So you have to add hours to it for makestrtotimestring. Usegmdate()function instead ofdate()to make h:i:s format.Hope this will be helpful