Skip to content

Instantly share code, notes, and snippets.

@linglung
Last active January 16, 2017 01:21
Show Gist options
  • Select an option

  • Save linglung/2709d0e0e49763521a0ccf63baa69cee to your computer and use it in GitHub Desktop.

Select an option

Save linglung/2709d0e0e49763521a0ccf63baa69cee to your computer and use it in GitHub Desktop.
<?php
function covtime($yt_time){
$start = new DateTime('@0'); // Unix epoch
$start->add(new DateInterval($yt_time));
return $start->format('H:i:s');
}
echo covtime('PT2H34M25S');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment