Skip to content

Instantly share code, notes, and snippets.

@joanfabregat
Created February 25, 2023 12:36
Show Gist options
  • Save joanfabregat/f01173617486165013a969ef584c7d14 to your computer and use it in GitHub Desktop.
Save joanfabregat/f01173617486165013a969ef584c7d14 to your computer and use it in GitHub Desktop.
Heures et minutes en PHP
function getHoursAndMinutes(int $seconds): string
{
return sprintf(
"%dh%02d",
(int)floor($seconds / 3600),
($seconds / 60) % 60
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment