Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function TimestampToWeekdayName ($timestamp) {
- $weekday = date('N', $timestamp); /* 1-7 */
- $weekdayNames = [
- 1=>'Понедельник',
- 2=>'Вторник',
- 3=>'Среда',
- 4=>'Четверг',
- 5=>'Пятница',
- 6=>'Суббота',
- 7=>'Воскресенье',
- ];
- return $weekdayNames[$weekday];
- }
- echo TimestampToWeekdayName(1447773654);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement