Скрипт який дозволяє визначити поточний тиждень - 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. $currentWeekNumber = date('W');
  4.  
  5.  
  6. $isEvenWeek = ($currentWeekNumber % 2 == 0);
  7.  
  8.  
  9. if ($isEvenWeek) {
  10.     echo "Зараз парний тиждень";
  11. } else {
  12.     echo "Зараз непарний тиждень";
  13. }
  14. ?>
  15.  
File Description
  • Скрипт який дозволяє визначити поточний тиждень
  • PHP Code
  • 14 Sep-2023
  • 241 Bytes
You can Share it: