Created
February 10, 2021 18:08
-
-
Save Padilo300/78c53670787ab9d2ef2aac831dca5b3e to your computer and use it in GitHub Desktop.
месяц на русском дата date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$_monthsList = array(".01." => "январь", ".02." => "февраль", | |
".03." => "март", ".04." => "апрель", ".05." => "май", ".06." => "июнь", | |
".07." => "июль", ".08." => "август", ".09." => "сентябрь", | |
".10." => "октябрь", ".11." => "ноябрь", ".12." => "декабрь"); | |
$_mD = date(".m."); //для замены | |
echo $_monthsList[$_mD]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment