How to Convert Seconds into Hours and Minutes in PHP ? Last Updated : 02 Jan, 2024 Comments Improve Suggest changes Like Article Like Report Given a number n (time in seconds), the task is to convert the given number of seconds into hours and minutes in PHP. Examples: Input: 3691215Output: 1025 hours and 20 minutesInput: 1296Output: 0 hours and 21 minutesIn PHP, you can convert a duration in seconds into hours and minutes using basic arithmetic operations. To convert the seconds into hours, divide the seconds by 3600, and for minutes, take the remainder of seconds by 3600, and divide by 60. Example: Convert the given time (in seconds) into hours, and minutes using arithmentic operation. PHP <?php function secondsToHoursMinutes($seconds) { // Calculate the hours $hours = floor($seconds / 3600); // Calculate the remaining seconds // into minutes $minutes = floor(($seconds % 3600) / 60); // Return the result as an // associative array return [ 'hours' => $hours, 'minutes' => $minutes, ]; } // Driver code $seconds = 3665; $duration = secondsToHoursMinutes($seconds); echo "{$duration['hours']} hours and" . " {$duration['minutes']} minutes"; ?> Output1 hours and 1 minutes Create Quiz Comment P ppatelkap Follow 0 Improve P ppatelkap Follow 0 Improve Article Tags : PHP PHP-math Geeks Premier League 2023 Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions8 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like