Skip to content

Instantly share code, notes, and snippets.

@rskull
Created September 12, 2011 19:26
Show Gist options
  • Save rskull/1212131 to your computer and use it in GitHub Desktop.
Save rskull/1212131 to your computer and use it in GitHub Desktop.
9500秒を時:分:秒に変換 [コードゴルフ]
<?$s=9500;$m=$s%3600;echo($s-$m)/3600,':'.floor($m/60).':'.$m%60;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment