Створити масиви для місяців - 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. $months = ["січень", "лютий", "березень", "квітень", "травень", "червень", "липень", "серпень", "вересень", "жовтень", "листопад", "грудень"];
  4. $daysOfWeek = ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"];
  5.  
  6.  
  7. $currentDate = new DateTime();
  8.  
  9.  
  10. $currentMonth = $currentDate->format('n');
  11. $currentDayOfWeek = $currentDate->format('w');
  12. $currentDayOfMonth = $currentDate->format('j');
  13.  
  14.  
  15. $monthName = $months[$currentMonth - 1];
  16. $dayOfWeekName = $daysOfWeek[$currentDayOfWeek];
  17.  
  18.  
  19. echo "Сьогодні $currentDayOfMonth $monthName$dayOfWeekName";
  20. ?>
  21.  
File Description
  • Створити масиви для місяців
  • PHP Code
  • 14 Sep-2023
  • 735 Bytes
You can Share it: