Скрипт який дозволяє визначити скільки часу залишилося до кінця поточної пари - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.

Name: Скрипт який дозволяє визначити скільки часу залишилося до кінця поточної пари fullscreencopydownloadembedprint


Your result can be seen below.

Result of php executing





Full code of Скрипт який дозволяє визначити скільки часу залишилося до кінця поточної пари.php

  1. <?php
  2.  
  3. $currentTimestamp = time();
  4.  
  5.  
  6. $lectureTimes = [
  7.     strtotime('08:30:00'), // Перша пара
  8.     strtotime('10:05:00'), // Друга пара
  9.     strtotime('11:40:00'), // Третя пара
  10.     strtotime('13:15:00'), // Четверта пара
  11.     strtotime('14:50:00'),  // П'ята пара
  12.     strtotime('16:25:00')  // Шоста пара
  13. ];
  14.  
  15.  
  16. $currentLecture = false;
  17.  
  18. foreach ($lectureTimes as $index => $lectureTime) {
  19.     if ($currentTimestamp < $lectureTime) {
  20.         $currentLecture = $index;
  21.         break;
  22.     }
  23. }
  24.  
  25.  
  26. if ($currentLecture !== false) {
  27.     $endTime = $lectureTimes[$currentLecture];
  28.     $timeRemaining = $endTime - $currentTimestamp;
  29.     
  30.     $minutesRemaining = floor($timeRemaining / 60);
  31.     echo "До кінця пари залишилося $minutesRemaining хв.";
  32. } else {
  33.     echo "Зараз немає пари";
  34. }
  35. ?>
  36.  
File Description
  • Скрипт який дозволяє визначити скільки часу залишилося до кінця поточної пари
  • PHP Code
  • 14 Sep-2023
  • 909 Bytes
You can Share it: