Створити масиви для місяців - 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.
Result of php executing
Full code of Створити масиви для місяців.php
- <?php
- $months = ["січень", "лютий", "березень", "квітень", "травень", "червень", "липень", "серпень", "вересень", "жовтень", "листопад", "грудень"];
- $daysOfWeek = ["неділя", "понеділок", "вівторок", "середа", "четвер", "п'ятниця", "субота"];
- $currentDate = new DateTime();
- $currentMonth = $currentDate->format('n');
- $currentDayOfWeek = $currentDate->format('w');
- $currentDayOfMonth = $currentDate->format('j');
- $monthName = $months[$currentMonth - 1];
- $dayOfWeekName = $daysOfWeek[$currentDayOfWeek];
- echo "Сьогодні $currentDayOfMonth $monthName, $dayOfWeekName";
- ?>