strftime

(PHP 4, PHP 5, PHP 7, PHP 8)

strftimeФорматирует текущую дату/время с учётом текущих настроек локали

Описание

strftime(string $format, int|null $timestamp = null): string|false

Форматирует дату/время с учётом текущих настроек локали. Названия месяцев, дней недели и других языкозависимых строк будут взяты в соответствии с текущими настройками локали, установленной с помощью функции setlocale().

Ваша C-библиотека может не поддерживать все форматирующие параметры, в этом случае они будут недоступны функции strftime(). Кроме того, не все платформы поддерживают отрицательные метки времени, так что поддерживаемый диапазон дат на этих платформах будет ограничен эпохой Unix. Это значит, что %e, %T, %R и %D (а возможно и другие параметры), как и даты до Jan 1, 1970, не поддерживаются Windows, некоторыми версиями Linux и некоторыми другими операционными системами. Список форматирующих символов, поддерживаемых Windows, можно найти на » сайте MSDN.

Список параметров

format

Распознаются следующие символы в строке format
format Описание Пример возвращаемых значений
День --- ---
%a Сокращённое название дня недели От Sun до Sat
%A Полное название дня недели От Sunday до Saturday
%d Двухзначное представление дня месяца (с ведущими нулями) От 01 до 31
%e День месяца, с ведущим пробелом, если он состоит из одной цифры. На Windows реализован не так, как описано. Подробнее смотрите ниже. От 1 до 31
%j Порядковый номер в году, 3 цифры с ведущими нулями От 001 до 366
%u Порядковый номер дня недели согласно стандарту ISO-8601 От 1 (понедельник) до 7 (воскресенье)
%w Порядковый номер дня недели От 0 (воскресенье) до 6 (суббота)
Неделя --- ---
%U Порядковый номер недели в указанном году, начиная с первого воскресенья в качестве первой недели 13 (для полной 13-й недели года)
%V Порядковый номер недели в указанном году в соответствии со стандартом ISO-8601:1988, счёт начинается с той недели, которая содержит минимум 4 дня, неделя начинается с понедельника От 01 до 53 (где 53 указывает на перекрывающуюся неделю)
%W Порядковый номер недели в указанном году, начиная с первого понедельника в качестве первой недели 46 (для 46-й недели года, начинающейся с понедельника)
Месяц --- ---
%b Аббревиатура названия месяца, в соответствии с настройками локали От Jan до Dec
%B Полное название месяца, в соответствии с настройками локали От January до December
%h Аббревиатура названия месяца, в соответствии с настройками локали (псевдоним %b) От Jan до Dec
%m Двухзначный порядковый номер месяца От 01 (январь) до 12 (декабрь)
Год --- ---
%C Двухзначный порядковый номер столетия (год, делённый на 100, усечённый до целого) 19 для 20-го века
%g Двухзначный номер года в соответствии со стандартом ISO-8601:1988 (смотрите %V) Пример: 09 для недели 6 января 2009
%G Полная четырёхзначная версия %g Пример: 2009 для недели 3 января 2009
%y Двухзначный порядковый номер года Пример: 09 для 2009, 79 для 1979
%Y Четырёхзначный номер года Пример: 2038
Время --- ---
%H Двухзначный номер часа в 24-часовом формате От 00 до 23
%k Часы в 24-часовом формате, с пробелом перед одиночной цифрой От 0 до 23
%I Двухзначный номер часа в 12-часовом формате От 01 до 12
%l (строчная 'L') Час в 12-часовом формате, с пробелом перед одиночной цифрой От 1 до 12
%M Двухзначный номер минуты От 00 до 59
%p 'AM' или 'PM' в верхнем регистре, в зависимости от указанного времени Пример: AM для 00:31, PM для 22:23
%P 'am' или 'pm' в зависимости от указанного времени Пример: am для 00:31, pm для 22:23
%r То же что и "%I:%M:%S %p" Пример: 09:34:17 PM для 21:34:17
%R То же что и "%H:%M" Пример: 00:35 для 12:35 AM, 16:44 для 4:44 PM
%S Двухзначный номер секунды От 00 до 59
%T То же что и "%H:%M:%S" Пример: 21:34:17 для 09:34:17 PM
%X Предпочитаемое отображение времени в зависимости от локали, без даты Пример: 03:59:16 или 15:59:16
%z Смещение временной зоны относительно UTC. Не реализовано в Windows, подробности смотрите ниже. Пример: -0500 для US Eastern Time
%Z Аббревиатура временной зоны. Не реализовано в Windows, подробности смотрите ниже. Пример: EST для Eastern Time
Метки даты и времени --- ---
%c Предпочитаемое отображение даты и времени, в зависимости от текущей локали Пример: Tue Feb 5 00:45:10 2009 для 5 февраля 2009 00:45:10
%D То же что и "%m/%d/%y" Пример: 02/05/09 для 5 февраля 2009
%F То же что и "%Y-%m-%d" (обычно используется в метках времени баз данных) Пример: 2009-02-05 для 5 февраля 2009
%s Метка времени Эпохи Unix (то же что и функция time()) Пример: 305815200 для 10 сентября 1979 08:40:00
%x Предпочитаемое отображение даты, без времени Пример: 02/05/09 для 5 февраля 2009
Различное --- ---
%n Символ перевода строки ("\n") ---
%t Символ табуляции ("\t") ---
%% Символ процента ("%") ---

Внимание

В отличие от ISO-9899:1999, в Sun Solaris воскресенью присваивается номер 1. Как результат, %u может работать не так, как описано в этом руководстве.

Внимание

Только для Windows:

Модификатор %e не поддерживается в реализации этой функции в Windows. Для использования этого значения необходимо вместо него использовать модификатор %#d. Пример ниже иллюстрирует кроссплатформенно совместимую функцию.

Модификаторы %z и %Z возвращают название временной зоны вместо смещения или аббревиатуры.

Внимание

Только для macOS и Musl: модификатор %P не поддерживается в реализации этой функции в macOS.

timestamp

Необязательный параметр timestamp представляет собой метку времени типа int, по умолчанию равную текущему локальному времени, если timestamp не указан или null. Другими словами, значение по умолчанию равно результату функции time().

Возвращаемые значения

Возвращает строку, отформатированную в соответствии с параметром format, используя указанную временную метку timestamp или текущее время, если метка не была указана. Названия месяцев, дней недели и других языкозависимых строк будут взяты в соответствии с текущими настройками локали, установленной с помощью функции setlocale(). Функция возвращает false если параметр format пустой, содержит неподдерживаемые спецификаторы преобразования или если длина возвращаемой строки будет больше 4095.

Ошибки

Каждый вызов к функциям даты/времени при неправильных настройках временной зоны сгенерирует ошибку уровня E_NOTICE, и/или ошибку уровня E_STRICT или E_WARNING при использовании системных настроек или переменной окружения TZ. Смотрите также date_default_timezone_set()

Из-за того, что результат данной функции зависит от используемой в операционной системе C-библиотеки, некоторые модификаторы могут не поддерживаться. Передача неизвестного модификатора в функцию в Windows выдаст 5 предупреждений E_WARNING и вернёт false. На других операционных системах вы можете не получить никаких предупреждений E_WARNING, а вывод может содержать модификаторы без преобразований.

Список изменений

Версия Описание
8.0.0 timestamp теперь допускает значение null.

Примеры

Этот пример будет работать, если на вашей системе установлены соответствующие локали.

Пример #1 Пример использования функции strftime() с разными локалями

<?php
setlocale
(LC_TIME"C");
echo 
strftime("%A");
setlocale(LC_TIME"fi_FI");
echo 
strftime(" по-фински - %A,");
setlocale(LC_TIME"fr_FR");
echo 
strftime(" по-французски - %A и");
setlocale(LC_TIME"de_DE");
echo 
strftime(" по-немецки - %A.\n");
?>

Пример #2 Пример номеров недели по ISO 8601:1988

<?php
/*     Декабрь 2002 / Январь 2003
ISOнед Пн  Вт  Ср  Чт  Пт  Сб  Вс
----- ----------------------------
51     16  17  18  19  20  21  22
52     23  24  25  26  27  28  29
1      30  31   1   2   3   4   5
2       6   7   8   9  10  11  12
3      13  14  15  16  17  18  19   */

// Вывод: 12/28/2002 - %V,%G,%Y = 52,2002,2002
echo "12/28/2002 - %V,%G,%Y = " strftime("%V,%G,%Y"strtotime("12/28/2002")) . "\n";

// Вывод: 12/30/2002 - %V,%G,%Y = 1,2003,2002
echo "12/30/2002 - %V,%G,%Y = " strftime("%V,%G,%Y"strtotime("12/30/2002")) . "\n";

// Вывод: 1/3/2003 - %V,%G,%Y = 1,2003,2003
echo "1/3/2003 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("1/3/2003")) . "\n";

// Вывод: 1/10/2003 - %V,%G,%Y = 2,2003,2003
echo "1/10/2003 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("1/10/2003")) . "\n";



/*     Декабрь 2004 / Январь 2005
ISOнед Пн  Вт  Ср  Чт  Пт  Сб  Вс
----- ----------------------------
51     13  14  15  16  17  18  19
52     20  21  22  23  24  25  26
53     27  28  29  30  31   1   2
1       3   4   5   6   7   8   9
2      10  11  12  13  14  15  16   */

// Вывод: 12/23/2004 - %V,%G,%Y = 52,2004,2004
echo "12/23/2004 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("12/23/2004")) . "\n";

// Вывод: 12/31/2004 - %V,%G,%Y = 53,2004,2004
echo "12/31/2004 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("12/31/2004")) . "\n";

// Вывод: 1/2/2005 - %V,%G,%Y = 53,2004,2005
echo "1/2/2005 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("1/2/2005")) . "\n";

// Вывод: 1/3/2005 - %V,%G,%Y = 1,2005,2005
echo "1/3/2005 - %V,%G,%Y = " strftime("%V,%G,%Y",strtotime("1/3/2005")) . "\n";

?>

Пример #3 Кроссплатформенный пример использования модификатора %e

<?php

// 1 января: выдаёт результат: '%e%1%' (%%, e, %%, %e, %%)
$format '%%e%%%e%%';

// Проверяем наличие Windows и соответственно заменяем модификатор %e
if (strtoupper(substr(PHP_OS03)) == 'WIN') {
    
$format preg_replace('#(?<!%)((?:%%)*)%e#''\1%#d'$format);
}

echo 
strftime($format);
?>

Пример #4 Показываем все известные и неизвестные форматы.

<?php
// Описание форматов.
$strftimeFormats = array(
    
'A' => 'Полное название дня',
    
'B' => 'Полное имя месяца, в зависимости от локали',
    
'C' => 'Двухзначный номер столетия (год, делённый на 100, усечённый до целого)',
    
'D' => 'Тоже что и "%m/%d/%y"',
    
'E' => '',
    
'F' => 'Тоже что и "%Y-%m-%d"',
    
'G' => 'Четырёхзначная версия %g',
    
'H' => 'Двухзначный номер часа в 24-часовом формате',
    
'I' => 'Двухзначный номер часа в 12-часовом формате',
    
'J' => '',
    
'K' => '',
    
'L' => '',
    
'M' => 'Двухзначный номер минуты',
    
'N' => '',
    
'O' => '',
    
'P' => '"am" или "pm" в зависимости от текущего времени, в нижнем регистре',
    
'Q' => '',
    
'R' => 'Тоже что и "%H:%M"',
    
'S' => 'Двухзначный номер секунды',
    
'T' => 'Тоже что и "%H:%M:%S"',
    
'U' => 'Номер недели указанного года, начиная с первого воскресенья в качестве первой недели',
    
'V' => 'Порядковый номер недели в указанном году в соответствии со стандартом ISO-8601:1988, счёт начинается с той недели, которая содержит минимум 4 дня, неделя начинается с понедельника',
    
'W' => 'Номер недели указанного года, начиная с первого понедельника в качестве первой недели',
    
'X' => 'Предпочитаемое отображение времени в зависимости от локали, без даты',
    
'Y' => 'Четырёхзначный номер года',
    
'Z' => 'Смещение временной зоны/аббревиатура, НЕ выдаваемая %z (зависит от операционной системы)',
    
'a' => 'Сокращённое название дня недели',
    
'b' => 'Сокращённое название месяца в зависимости от локали',
    
'c' => 'Предпочитаемое отображение даты и времени в зависимости от локали',
    
'd' => 'Двухзначный номер дня месяца (с ведущими нулями)',
    
'e' => 'День месяца, с ведущим пробелом, если он состоит из одной цифры',
    
'f' => '',
    
'g' => 'Двухзначный номер года в соответствии со стандартом ISO-8601:1988 (смотрите %V)',
    
'h' => 'Сокращённое название месяца в зависимости от локали (псевдоним %b)',
    
'i' => '',
    
'j' => 'Номер дня в году, 3 цифры с ведущими нулями',
    
'k' => 'Час в 24-часовом формате, с ведущим пробелом перед одиночной цифрой',
    
'l' => 'Номер часа в 12-часовом формате, с ведущим пробелом, если он состоит из одной цифры',
    
'm' => 'Двухзначный номер месяца',
    
'n' => 'Символ новой строки ("\n")',
    
'o' => '',
    
'p' => '"AM" или "PM" в зависимости от указанного времени, в верхнем регистре',
    
'q' => '',
    
'r' => 'Тоже что и "%I:%M:%S %p"',
    
's' => 'Временная метка Эпохи Unix',
    
't' => 'Символ табуляции ("\t")',
    
'u' => 'Номер дня недели в соответствии со стандартом ISO-8601',
    
'v' => '',
    
'w' => 'Номер дня недели',
    
'x' => 'Предпочитаемое отображение даты в зависимости от локали, без времени',
    
'y' => 'Двухзначный номер года',
    
'z' => 'Смещение временной зоны относительно UTC или аббревиатура (зависит от операционной системы)',
    
'%' => 'Символ процента ("%")',
);

// Результаты.
$strftimeValues = array();

// Обрабатываем форматы и подавляем любые ошибки.
foreach($strftimeFormats as $format => $description){
    if (
False !== ($value = @strftime("%{$format}"))){
        
$strftimeValues[$format] = $value;
    }
}

// Находим самое длинное значение
$maxValueLength max(array_map('strlen'$strftimeValues));

// Отображаем известные форматы.
foreach($strftimeValues as $format => $value){
    echo 
"Известный формат   : '{$format}' = "str_pad("'{$value}'"$maxValueLength), " ( {$strftimeFormats[$format]} )\n";
}

// Отображаем неизвестные форматы.
foreach(array_diff_key($strftimeFormats$strftimeValues) as $format => $description){
    echo 
"Неизвестный формат : '{$format}'   "str_pad(' '$maxValueLength), ($description " ( {$description} )" ''), "\n";
}
?>

Результатом выполнения данного примера будет что-то подобное:

Известный формат   : 'A' = 'Friday'            ( Полное название дня )
Известный формат   : 'B' = 'December'          ( Полное имя месяца, в зависимости от локали )
Известный формат   : 'H' = '11'                ( Двухзначный номер часа в 24-часовом формате )
Известный формат   : 'I' = '11'                ( Двухзначный номер часа в 12-часовом формате )
Известный формат   : 'M' = '24'                ( Двухзначный номер минуты )
Известный формат   : 'S' = '44'                ( Двухзначный номер секунды )
Известный формат   : 'U' = '48'                ( Номер недели указанного года, начиная с первого воскресенья в качестве первой недели )
Известный формат   : 'W' = '48'                ( Номер недели указанного года, начиная с первого понедельника в качестве первой недели )
Известный формат   : 'X' = '11:24:44'          ( Предпочитаемое отображение времени в зависимости от локали, без даты )
Известный формат   : 'Y' = '2010'              ( Четырёхзначный номер года )
Известный формат   : 'Z' = 'GMT Standard Time' ( Смещение временной зоны/аббревиатура, НЕ выдаваемая %z (зависит от операционной системы) )
Известный формат   : 'a' = 'Fri'               ( Сокращённое название дня недели )
Известный формат   : 'b' = 'Dec'               ( Сокращённое название месяца в зависимости от локали )
Известный формат   : 'c' = '12/03/10 11:24:44' ( Предпочитаемое отображение даты и времени в зависимости от локали )
Известный формат   : 'd' = '03'                ( Двухзначный номер дня месяца (с ведущими нулями) )
Известный формат   : 'j' = '337'               ( Номер дня в году, 3 цифры с ведущими нулями )
Известный формат   : 'm' = '12'                ( Двухзначный номер месяца )
Известный формат   : 'p' = 'AM'                ( "AM" или "PM" в зависимости от указанного времени, в верхнем регистре )
Известный формат   : 'w' = '5'                 ( Номер дня недели )
Известный формат   : 'x' = '12/03/10'          ( Предпочитаемое отображение даты в зависимости от локали, без времени )
Известный формат   : 'y' = '10'                ( Двухзначный номер года )
Известный формат   : 'z' = 'GMT Standard Time' ( Смещение временной зоны относительно UTC или аббревиатура (зависит от операционной системы) )
Известный формат   : '%' = '%'                 ( Символ процента ("%") )
Неизвестный формат : 'C'                       ( Двухзначный номер столетия (год, делённый на 100, усечённый до целого) )
Неизвестный формат : 'D'                       ( Тоже что и "%m/%d/%y" )
Неизвестный формат : 'E'
Неизвестный формат : 'F'                       ( Тоже что и "%Y-%m-%d" )
Неизвестный формат : 'G'                       ( Четырёхзначная версия %g )
Неизвестный формат : 'J'
Неизвестный формат : 'K'
Неизвестный формат : 'L'
Неизвестный формат : 'N'
Неизвестный формат : 'O'
Неизвестный формат : 'P'                       ( "am" или "pm" в зависимости от текущего времени, в нижнем регистре )
Неизвестный формат : 'Q'
Неизвестный формат : 'R'                       ( Тоже что и "%H:%M" )
Неизвестный формат : 'T'                       ( Тоже что и "%H:%M:%S" )
Неизвестный формат : 'V'                       ( Порядковый номер недели в указанном году в соответствии со стандартом ISO-8601:1988, счёт начинается с той недели, которая содержит минимум 4 дня, неделя начинается с понедельника )
Неизвестный формат : 'e'                       ( День месяца, с ведущим пробелом, если он состоит из одной цифры )
Неизвестный формат : 'f'
Неизвестный формат : 'g'                       ( Двухзначный номер года в соответствии со стандартом ISO-8601:1988 (смотрите %V) )
Неизвестный формат : 'h'                       ( Сокращённое название месяца в зависимости от локали (псевдоним %b) )
Неизвестный формат : 'i'
Неизвестный формат : 'k'                       ( Номер часа в 24-часовом формате, с ведущим пробелом, если он состоит из одной цифры )
Неизвестный формат : 'l'                       ( Номер часа в 12-часовом формате, с ведущим пробелом, если он состоит из одной цифры )
Неизвестный формат : 'n'                       ( Символ новой строки ("\n") )
Неизвестный формат : 'o'
Неизвестный формат : 'q'
Неизвестный формат : 'r'                       ( Тоже что и "%I:%M:%S %p" )
Неизвестный формат : 's'                       ( Временная метка Эпохи Unix )
Неизвестный формат : 't'                       ( Символ табуляции ("\t") )
Неизвестный формат : 'u'                       ( Номер дня недели в соответствии со стандартом ISO-8601 )
Неизвестный формат : 'v'

Примечания

Замечание: Использование параметров %G и %V, основанных на днях недели формата ISO 8601:1988, могут давать неожиданные (хотя и корректные) результаты при неполном понимании данной системы нумерации. Смотрите примеры параметра %V на данной странице.

Смотрите также

add a note add a note

User Contributed Notes 40 notes

up
48
Bondas Timotei
12 years ago
If strange characters are returned use utf8_encode(strftime()) for UTF-8 characters
up
11
aaronw at catalyst dot net dot nz
6 years ago
The page mentions that the available conversion specifiers may be different in "Windows, some Linux distributions, and a few other operating systems".

Specifically, the list of specifiers on this page is basically those from standard GNU/Linux (but without %E, %O, and %+), which is a combination of specifiers from a few different standards. See: http://man7.org/linux/man-pages/man3/strftime.3.html

This means that, if you're not using Linux, or your Linux distro has a different C library than glibc, there *will* probably be at least a few differences in the supported specifiers. Windows has the most differences, but I've also encountered differences in Alpine Linux (which uses musl intsead of glibc) and BSD.
up
9
raf at sns dot pm
8 years ago
For all those who work with WampServer on Windows,
I propose you a formatting(layout) of date as " Friday, January 1st, 2016 " instead of " Friday, January 01st, 2016 " (note the zero in front of 1) which works at the same time on Windows / WampServer and on (on-line) Linux / waiter.
There are problems with "%e" - > which(who) works on Linux and not on Windows - > "%#d" (this works on windows/wampserver)
I simply made a condition:
<?php
if ($_SERVER['SERVER_NAME'] == "website.com") // On line
{
  
$number_of_the_day= "%e"; // Number of the day without "0"
}
else
{
  
$number_of_the_day = "%#d"// The same on Windows/Wampserver
}

setlocale(LC_TIME, 'fr_FR.utf8','fra'); // I'm french !

// i use this fonction ucfirst('string') for "V" Maj. and "J" Maj.

echo ucfirst(strftime('%A '.$number_of_the_day.' %B %Y'));

//  "Vendredi 1 Janvier 2016"  (->  without "0")
?>
Here we are, I hope to have helped.
up
9
ciprianmp at yahoo dot com
13 years ago
This worked for me to distinguish between windows and linux, for stripping leading zeros from days/months in the short formats (like for Czech):
stristr(PHP_OS,"win") ? "%#d.%#m.%Y" : "%-d.%-m.%Y"
up
7
th1nk3r at gmail dot DELETETHIS dot com
17 years ago
Function strftime() use the locales installed in your system (linux).

If you are like me and only leave in the system the locales you use normally (en_US and your own language locale, like es_ES), you'll only be able to use the locales installed. If your application is translated to other languages, you need these locales too.

The name of the locale in your system is important too. This can be a problem when you want to distribute the app.

If you have this locales in your system:
en_US/ISO-8859-1
en_US.UTF-8/UTF-8
es_ES/ISO-8859-1
es_ES@euro/ISO-8859-15
es_ES.UTF-8/UTF-8
es_ES@euro/UTF-8

and use setlocale('es_ES'), the result will use the iso-8859-1 charset even if you have all your system, files and configuration options in UTF-8. To receive content in UTF-8, in this example, you need to use setlocale('es_ES.UTF-8') or setlocale('es_ES.UTF-8@UTF-8').

The definition of locales can change from one system to another, and so the charset from the results.
up
5
baptiste dot place at utopiaweb dot fr
14 years ago
Created this small method to convert a date format to a strftime format. One format is enough to learn :)

<?php
/**
* Convert a date format to a strftime format
*
* Timezone conversion is done for unix. Windows users must exchange %z and %Z.
*
* Unsupported date formats : S, n, t, L, B, G, u, e, I, P, Z, c, r
* Unsupported strftime formats : %U, %W, %C, %g, %r, %R, %T, %X, %c, %D, %F, %x
*
* @param string $dateFormat a date format
* @return string
*/
public static function dateFormatToStrftime($dateFormat) {
   
   
$caracs = array(
       
// Day - no strf eq : S
       
'd' => '%d', 'D' => '%a', 'j' => '%e', 'l' => '%A', 'N' => '%u', 'w' => '%w', 'z' => '%j',
       
// Week - no date eq : %U, %W
       
'W' => '%V'
       
// Month - no strf eq : n, t
       
'F' => '%B', 'm' => '%m', 'M' => '%b',
       
// Year - no strf eq : L; no date eq : %C, %g
       
'o' => '%G', 'Y' => '%Y', 'y' => '%y',
       
// Time - no strf eq : B, G, u; no date eq : %r, %R, %T, %X
       
'a' => '%P', 'A' => '%p', 'g' => '%l', 'h' => '%I', 'H' => '%H', 'i' => '%M', 's' => '%S',
       
// Timezone - no strf eq : e, I, P, Z
       
'O' => '%z', 'T' => '%Z',
       
// Full Date / Time - no strf eq : c, r; no date eq : %c, %D, %F, %x 
       
'U' => '%s'
   
);
   
    return
strtr((string)$dateFormat, $caracs);
}
?>

I use it with this condition on a date format :
if(preg_match("/(D|l|F|M)/", $format))
up
2
Anonymous
13 years ago
%V may fail with some systems (Windows XP, at least). Here is a function that should work to get the week number of a day (timestamped), according to ISO 8601.

"should work" as in "it is working with my understanding of this norm", where 1st of january can be week 52, 53 or 01. Hopefully.

testing (php_uname("s") == "Windows NT") or equivalent can be an option (when switching between Wampserver and a GNU server, for instance).

Please, erase and correct my message if there is any error.

<?php
function week_isonumber ($time) {
// When strftime("%V") fails, some unoptimized workaround
//
// http://en.wikipedia.org/wiki/ISO_8601 : week 1 is "the week with the year's first Thursday in it (the formal ISO definition)"

   
$year = strftime("%Y", $time);

   
$first_day = strftime("%w", mktime(0, 0, 0, 1, 1, $year));
   
$last_day = strftime("%w", mktime(0, 0, 0, 12, 31, $year));
       
   
$number = $isonumber = strftime("%W", $time);

   
// According to strftime("%W"), 1st of january is in week 1 if and only if it is a monday
   
if ($first_day == 1)
       
$isonumber--;

   
// 1st of january is between monday and thursday; starting (now) at 0 when it should be 1
   
if ($first_day >= 1 && $first_day <= 4)
       
$isonumber++;
    else if (
$number == 0)
       
$isonumber = week_isonumber(mktime(0, 0, 0, 12, 31, $year - 1));

    if (
$isonumber == 53 && ($last_day == 1 || $last_day == 2 || $last_day == 3))
       
$isonumber = 1;

    return
sprintf("%02d", $isonumber);
}
?>
up
6
dgudgeon at example dot com
12 years ago
If moving from date() to strftime() to support additional languages, you may miss the ordinal suffix format option date('S'). Workaround this by adding an extra modifier (%O).

<?php
function my_strftime ($format, $timestamp)
{
   
$format = str_replace('%O', date('S', $timestamp), $format);   
    return
strftime($format, $timestamp);
}
?>
up
5
Lemmi
13 years ago
Why not use utf8_encode to fix problems with letters in ISO-8859-1 and charset set to UTF-8?

For example:
<?php

setlocale
(LC_TIME, "de_DE");
echo
utf8_encode(strftime('%B')); // Output e.g.: März

?>
up
2
Chris
12 years ago
Sometimes, you want Jan 1 to be week 1 and weeks to begin on Sunday. Here's a way to use strftime U format character to follow this convention:
<?php
$month
= 5; $year = 2012; echo "Week #'s in May 2012: ";
$week_num_correction = strftime('%U', mktime(0,0,0,1,1,$year)) === '00' ? 1 : 0;
$week_numbers = range(strftime('%U', mktime(0,0,0,$month,1,$year)) + $week_num_correction, strftime('%U', mktime(0,0,0,$month+1,0,$year)) + $week_num_correction);
foreach(
$week_numbers as $week_number) echo "$week_number ";
?>
displays: Week #'s in May 2012: 18 19 20 21 22
up
1
chris at ocproducts dot com
7 years ago
Displaying hours in 12 hour clock...

%I = Cross-platform, padded with leading zero
%-I = Not on Windows, no padding
%#I = Windows only, no padding

Linux and MacOS confirmed to behave the same.
up
4
szilagyigabor at yahoo dot com
14 years ago
This is that worked with UTF-8 encoding on Linux server, with right accents:
<?php
setlocale
(LC_ALL, 'hu_HU.UTF8');
echo(
strftime('%Y. %B %d. %A'));
?>

Output is:
2009. november 02. hétfő

Also, this one can be used, if not utf-8 preferred:
<?php
setlocale
(LC_ALL, 'hu_HU.ISO8859-2');
?>

UTF-8 is not supported on windows platforms, so there the iconv workaround must be used:
<?php
setlocale
(LC_ALL, 'hun_hun');
echo(
iconv('ISO-8859-2', 'UTF-8',strftime('%Y. %B %d. %A')));
?>

The output is the same as before. Note that, the iconv first parameter is ISO-8859-2 not ISO-8859-1, because the locale is hungarian which uses 8859-2 codepage as default. It is needed for the right accents.

If you want use the same code for Windows and Linux platforms, the second one is the right option (the iconv trick), but the locale configuration must be different (Linux: hu_HU, windows: hun_hun), but in that case the UTF8 tag is not needed for the Linux config.
up
2
fmaz008 at gmail dot com
12 years ago
The example of the workarround for the %e modifier is a bit complex. Sometime you might want to prefer a simple ltrim():

<?php
ltrim
(strftime('%d', $time), '0');
?>
up
2
Josue R.
16 years ago
Here's a simple version for date formating i use between displaying in HTML and converting back to MYSQL format:

<?php
function format_date($original='', $format="%m/%d/%Y") {
   
$format = ($format=='date' ? "%m-%d-%Y" : $format);
   
$format = ($format=='datetime' ? "%m-%d-%Y %H:%M:%S" : $format);
   
$format = ($format=='mysql-date' ? "%Y-%m-%d" : $format);
   
$format = ($format=='mysql-datetime' ? "%Y-%m-%d %H:%M:%S" : $format);
    return (!empty(
$original) ? strftime($format, strtotime($original)) : "" );
}
?>

example (in HTML or webapp):
[grab from database]...
$dbase_stored_date = "2007-03-15";
$display_html_date = format_date($dbase_stored_date);
... displays as "03/15/2007"

example (saving form via on POST/GET):
$update_date = format_date($_POST['display_html_date'], 'mysql-date');
// converts back to '2007-03-15'
.... [your mysql update here]

Don't forget to sanitize your POST/GET's   =)
up
3
eljaunis at gmail dot com
15 years ago
This is what worked in my case:

<?php
    setlocale
(LC_ALL, 'es_ES').': ';
    echo
iconv('ISO-8859-1', 'UTF-8', strftime('%A %d de %B de %Y', time()));
   
?>

it displays: miércoles 22 de octubre de 2008
up
3
jjarsater at gmail dot com
14 years ago
<?php
// Date string
$timestamp     =     strftime("%Y-%m-%d %H:%M:%S %Y");

// From this string ($timestamp) can we print
echo strftime("%a %d %b %H:%M:%S %Y", strtotime($timestamp))."<br/>";
echo
strftime("%a %d %b %H:%M", strtotime($timestamp))."<br/>";
echo
strftime("%Y-%m-%d %H:%M:%S", strtotime($timestamp))."<br/>";
echo
strftime("%Y-%m-%d %H:%M", strtotime($timestamp))."<br/>";
echo
strftime("%Y-%m-%d", strtotime($timestamp))."<br/>";
echo
strftime("%a %d %b %Y", strtotime($timestamp))."<br/>";

/*And it will output

Wed 20 May 15:53:40 2009
Wed 20 May 15:53
2009-05-20 15:53:40
2009-05-20 15:53
2009-05-20
Wed 20 May 2009

*/
?>
up
1
neo at gothic-chat d0t de
19 years ago
To get a RFC 850 date (used in HTTP) of the current time:

gmstrftime ("%A %d-%b-%y %T %Z", time ());

This will get for example:
Friday 25-Jun-04 03:30:23 GMT

Please note that times in HTTP-headers _must_ be GMT, so use gmstrftime() instead of strftime().
up
1
lichihwu at gmail dot com
9 years ago
strftime() will get local time using timezone setting from date_default_timezone_set, then send format and converted tm structure to strftime() system call.

So it will output time stamp string ("%s" format string) with timezone converted tm structure, and it will be wrong unless you set  the same time zone with your machine.
up
2
eric dot brison at anakeen dot com
10 years ago
strftime not format microsecond (decimal part of seconds).
This function add '%f' key in format to render microsecond (6 digits) also.

<?php
/**
* @param string $format strftime format
* @param float $microtime time with microsecond
* @return string
*/
function strftimeu($format, $microtime)
{
    if (
preg_match('/^[0-9]*\\.([0-9]+)$/', $microtime, $reg)) {
       
$decimal = substr(str_pad($reg[1], 6, "0"), 0, 6);
    } else {
       
$decimal = "000000";
    }
   
$format = preg_replace('/(%f)/', $decimal, $format);
    return
strftime($format, $microtime);
}
?>

Example :
<?php
$now
=microtime(true);
printf("REF:%s\n",$now );
printf("FMT:%s\n", strftimeu('%H:%M:%S.%f', $now));
?>

Results are :
REF:1393937303.6615
FMT:13:48:23.661500
FMT:13h 48min 23s 661500µs

Note : Here the decimal part of microtime is on 4 digits due to default precision
up
1
jerome dot place at free dot fr
16 years ago
Here is a function to convert dates before 1970, very useful if you are still using php 4 (it is supported in php5) :

<?php
# convert a date to special format
# $date is like 2000-01-01 00:00:00
# $format : refer to strftime function
function convert_date($date,$format) {   
    if(
$date=='0000-00-00 00:00:00' OR $date=='0000-00-00' OR $date=='' OR $date==NULL) {
        return
'';
    }
    else {
       
$year=substr($date,0,4);
        if(
phpversion() < 5.0 AND $year < 1970) {
           
           
$new_date=substr_replace($date,'1980',0,4); # we replace the year by a year after 1970       
           
$new_format=eregi_replace('%a|%A|%u','',$format); # we remove days information from the format because they would be wrong
           
$new_date=strftime($new_format,strtotime($new_date)); # we convert the date
           
$new_date=eregi_replace('1980',$year,$new_date); # we put back the real year
           
return $new_date;
        }
        else {
            return
strftime($format,strtotime($date));
        }
    }
}
?>
up
2
denis at spiralsolutions dot com
17 years ago
(in addition to Andy's post)
To get a RFC 2822 date (used in RSS) of the current local time :

echo strftime ("%a, %d %b %Y %H:%M:%S %z") ;

Note: option %z / %Z - work different on Windows platform, for example
output of this code line can be:
Thu, 02 Nov 2006 09:54:59 Jerusalem Standard Time (on Windows)
Thu, 02 Nov 2006 09:54:59 +0200                   (on Linux)

[red. It is much smarter to use date(DATE_RSS); here]
up
2
Jon Keating
18 years ago
Under windows if you are using Japanese version, you must use the following code:

setlocale(LC_ALL, "Japanese_Japan.20932") for EUC
setlocale(LC_ALL, "Japanese_Japan.932") for SJIS

I found the following page that helped me with this issue:
http://moodle.org/mod/forum/discuss.php?d=8329
up
1
Chad
14 years ago
On the Linux server I'm using, strftime() also accepts a "-" option to request no padding:

<?php
$ts
= strtotime("4 Nov 2009");
echo
strlen(strftime("%-e", $ts)), "\n"; // "1" (no padding)
echo strlen(strftime("%e", $ts)), "\n"; // "2" (space padded)
?>
up
0
aimendrikonan at gmail dot com
3 years ago
// To set french date format

public function date_chaine($date){

        if($date==NULL){ $date = date('Y-m-d');}
        setlocale(LC_ALL, 'fr_FR').': ';
        return strftime( "%A %d %B %Y" , strtotime($date));
    }

/*
    return this Mercredi 16 septembre 2020
*/
up
0
Marc17
6 years ago
For Windows : this function return the ISO 8601 week number of timestamp.

function week_number_ISO8601($ts_date=0) {
    //See https://fr.wikipedia.org/wiki/ISO_8601#Num.C3.A9ro_de_semaine
    if ($ts_date==0) $ts_date=time();
    $n_w_th_ts_date=strftime('%w',$ts_date);
    $ts_thursday=($n_w_th_ts_date==0)?($ts_date-3*24*3600):($ts_date-($n_w_th_ts_date-4)*24*3600);
    $n_ts_thursday=strftime('%j',$ts_thursday);
    $w_n_iso=1+(int)(($n_ts_thursday-1)/7);
    return sprintf("%02d",$w_n_iso);
}
up
0
denis at ibresource dot ru
9 years ago
%p and %P replaced to '' in ru and other locales so 20:10 in %I:%M %p will be 08:10 in russian (without pm)
up
0
Michael Z.
14 years ago
This is so simple it has to be found in one of all the comments on all those different time functions. But since I didn't find it, here it is: Use this to convert between different time formats:

<?PHP
if (!function_exists('convertTime')) {
 
/** Converts time strings from one format into another using
   *  PHP formats.
   *
   *  @param String $dformat Format to convert to
   *  @param String $sformat Format to convert from, e.g. format
   *      of $ts
   *  @param String $ts Time string to be converted
   *  @return String Supplied time translated to the format specified
   *    in $dformat
   */
 
function convertTime($dformat,$sformat,$ts) {
   
extract(strptime($ts,$sformat));
    return
strftime($dformat,mktime(
                                 
intval($tm_hour),
                                 
intval($tm_min),
                                 
intval($tm_sec),
                                 
intval($tm_mon)+1,
                                 
intval($tm_mday),
                                 
intval($tm_year)+1900
                               
));
  }
}

/*
* And for the test....
*/
echo convertTime('%Y-%m-%d','%d.%m.%Y','27.11.2009');
?>

This should print "2009-27-11".

I did not put much effort in this code. The task also seems "too simple to be neccessary". But as I said, I didn't find anything to help me with this.

Cheers,

Michael Z
up
0
buana95 at yahoo dot com
15 years ago
For windows user:

If you unsuccessfully change date/time format to your locale country using xx_XX format, try using XXX format or ISO-639 country codes format.

See complete list for ISO-639 here: http://www.w3.org/WAI/ER/IG/ert/iso639.htm

For example:

<?php
setlocale
(LC_ALL, 'IND');
echo
strftime("Today in Indonesia is %A");
?>
up
0
nielsvan den berge at hotmail dot com
16 years ago
A small function to get the first weekday of the month.
For example the first monday of the month, or the first friday, etc.

<?php 
 
/**
   *
   *  Gets the first weekday of that month and year
   *
   *  @param  int   The day of the week (0 = sunday, 1 = monday ... , 6 = saturday)
   *  @param  int   The month (if false use the current month)
   *  @param  int   The year (if false use the current year)
   *
   *  @return int   The timestamp of the first day of that month
   *
   **/ 
 
function get_first_day($day_number=1, $month=false, $year=false)
  {
   
$month  = ($month === false) ? strftime("%m"): $month;
   
$year   = ($year === false) ? strftime("%Y"): $year;
   
   
$first_day = 1 + ((7+$day_number - strftime("%w", mktime(0,0,0,$month, 1, $year)))%7);
 
    return
mktime(0,0,0,$month, $first_day, $year);
  }

// this will output the first wednesday of january 2007 (wed 03-01-2007)
echo strftime("%a %d-%m-%Y", get_first_day(3, 1, 2007));
?>
up
0
ma
16 years ago
note, that for some languages you MUST set LC_ALL instead of LC_TIME.

note that you further have to explicitly define your output-encoding (default is ISO-8859-1 [which makes problems for some languages])!

at least i expirienced this behaviour on a german WinXP-PHP4 environment:

<?php

// does not work - gives question marks:
setlocale(LC_TIME, 'RUS'); // ISO Alpha-3 is supported by xp
echo strftime('%A', time());

?>

<?php

// DOES work:
header('Content-Type: text/html; charset=UTF-8'); // you could also use another charset here if iconv isn't installed on your system.

echo setlocale(LC_ALL, 'RUS').': ';
echo
iconv('windows-1251', 'UTF-8', strftime('%A', time()))."\n";

?>
up
0
jw at jwscripts dot com
18 years ago
The following function implements the conversion specifiers which are not supported on Win32 platforms:

(Note: the specifiers %V, %G and %g can be implemented using other functions described in this section)

<?php

function strftime_win32($format, $ts = null) {
    if (!
$ts) $ts = time();

   
$mapping = array(
       
'%C' => sprintf("%02d", date("Y", $ts) / 100),
       
'%D' => '%m/%d/%y',
       
'%e' => sprintf("%' 2d", date("j", $ts)),
       
'%h' => '%b',
       
'%n' => "\n",
       
'%r' => date("h:i:s", $ts) . " %p",
       
'%R' => date("H:i", $ts),
       
'%t' => "\t",
       
'%T' => '%H:%M:%S',
       
'%u' => ($w = date("w", $ts)) ? $w : 7
   
);
   
$format = str_replace(
       
array_keys($mapping),
       
array_values($mapping),
       
$format
   
);

    return
strftime($format, $ts);
}

?>
up
-1
Uwe at Familie-Loyal dot de
11 years ago
more fixed Problems while uing strftime in win32-systems.

        function strftime_win32($format, $ts = null) {
                if (!$ts) $ts = time();
       
                $mapping = array(
                                '%C' => sprintf("%02d", date("Y", $ts) / 100),
                                '%D' => '%m/%d/%y',
                                '%e' => sprintf("%' 2d", date("j", $ts)),
                                '%h' => '%b',
                                '%n' => "\n",
                                '%r' => date("h:i:s", $ts) . " %p",
                                '%R' => date("H:i", $ts),
                                '%t' => "\t",
                                '%T' => '%H:%M:%S',
                                '%u' => ($w = date("w", $ts)) ? $w : 7
                );
                $format = str_replace(
                                array_keys($mapping),
                                array_values($mapping),
                                $format
                );
               
                if($format=='%V' or $format=='%G' or $format=='%g'){
                        // When strftime("%V") fails, some unoptimized workaround
                        //
                        // http://en.wikipedia.org/wiki/ISO_8601 : week 1 is "the week with the year's first Thursday in it (the formal ISO definition)"

                       
                        $year = strftime("%Y", $ts);
                        $isoyear=$year;
                       
                        $first_day = strftime("%w", mktime(0, 0, 0, 1, 1, $year));
                        $last_day = strftime("%w", mktime(0, 0, 0, 12, 31, $year));
                       
                        $number = $isonumber = strftime("%W", $ts);
                       
                        // According to strftime("%W"), 1st of january is in week 1 if and only if it is a monday
                        if ($first_day == 1) {
                                $isonumber--;
                        }
                       
                        // 1st of january is between monday and thursday; starting (now) at 0 when it should be 1
                        if ($first_day >= 1 && $first_day <= 4){
                                $isonumber++;
                                $isoyear=$year;
                        }elseif ($number == 0){
                                $isonumber = mktime(0, 0, 0, 12, 31, $year - 1);
                                $isoyear=$year;
                        }
                        if ($isonumber == 53 && ($last_day == 1 || $last_day == 2 || $last_day == 3)){
                                $isonumber = 1;
                                $isoyear=$year+1;
                        }
                        if ($format=='%V') {
                                return sprintf("%02d", $isonumber);
                        }elseif ($format=='%G'){
                                return sprintf("%04d", $isoyear);
                        }elseif ($format=='%g'){
                                return substr(sprintf("%04d", $isoyear),-2);
                        }
                       
                               
                }else{
                        return strftime($format, $ts);
                }
        }
up
-1
emanuelis at gmail
5 years ago
Linux locales have alt_mon  values for months and php's strftime() has an undocumented format string %OB to get these values.

<?php
setlocale
(LC_ALL, "lt_LT.UTF8");

for (
$i = 1; $i <= 12; $i++) {
echo
strftime("%B", strtotime("2018-$i-01"))." ";
}
//outputs: sausio vasario kovo balandžio gegužės birželio liepos rugpjūčio rugsėjo spalio lapkričio gruodžio
echo "\n";

for (
$i = 1; $i <= 12; $i++) {
echo
strftime("%OB", strtotime("2018-$i-01"))." ";
}
//outputs: sausis vasaris kovas balandis gegužė birželis liepa rugpjūtis rugsėjis spalis lapkritis gruodis

?>
up
-1
chris at ocproducts dot com
7 years ago
Displaying days of month...

%d = Cross-platform, padded with leading zero
%e = Not on Windows, padded with leading space
%-d = Not on Windows, no padding
%#d = Windows only, no padding

Linux and MacOS confirmed to behave the same.
up
-1
Anonymous
5 years ago
If you get wrong characters / encoding, use .utf8 notion after your locale, like this: setlocale(LC_TIME, 'sk_SK.utf8');
up
-1
dosergio at gmail dot com
7 years ago
/*
     Date localized. (date + lo) = datelo
     @param $str = date string format
     @param optional $locale = desired locale, depends on presence in system. Defaults to en_US
     @param optional $time = If needs a specific time, and not current.

     @returns localized translation.

     usage example:  datelo( 'd-M-Y', 'pt_BR') internally changes to '%e-%b-%G' and returns "4-Dez-2016"  (Dezembro is Portuguese word)

    NOTE: Flags prohibited in this version:  "z" and "n", will cause to return the 'date' function version, with no translation!
*/

function datelo( $str, $locale='en_US', $time=null){

  if( $time === null){  $time = time(); }
  
  if ( preg_match("/[DlFM]/", $str) && ! preg_match("/[nz]/",  $str)){
    setlocale(LC_ALL, $locale);
    $dict = array();
    $dict['d'] = '%d';
    $dict['D'] = '%a';
    $dict['j'] = '%e';
    $dict['l'] = '%A';
    $dict['N'] = '%u';
    $dict['w'] = '%w';
    $dict['F'] = '%B';
    $dict['m'] = '%m';
    $dict['M'] = '%b';
    $dict['Y'] = '%G';
    $dict['g'] = '%l';
    $dict['G'] = '%k';
    $dict['h'] = '%I';
    $dict['H'] = '%H';
    $dict['i'] = '%M';
    $dict['s'] = '%S';
    $dict['S'] = ' '; //removes English sufixes th rd etc.
    $dict[' '] = ' ';
    $dict['-'] = '-';
    $dict['/'] = '/';
    $dict[':'] = ':';
    $dict[','] = ',';

    $chars = preg_split("//", $str);
    $nstr = '';

    foreach ($chars as $c){
      if ($c){ //skip empties
         $nstr .= $dict[$c];
      }
    }

    return strftime( $nstr);    

  }else{ // not localized

    return date( $str, $time);

  }
}
up
-3
alexbrtn@gmail dot com
10 years ago
{--}, it is replaced on "today" or "yesterday"
up
-3
dapikk[at]gmail[dot]com
15 years ago
I had a need to subtrackt an older time from current time to get the time between.
Example: If one has worked from 2009-03-16 11:33:54 to 2009-03-16 12:01:54 then he has worked X hours,minutes and seconds. I tried to find that X. And so - one solution would be:
<?php
$start_date
= strtotime("2009-03-16 11:33:54"); //start date from database - date("Y-m-d H:i:s") made as UNIX timestamp
$end_date = strtotime("2009-03-16 12:01:54"); //end date from database - date("Y-m-d H:i:s") made as UNIX timestamp
$ajavahe = $end_date - $start_date;
$time_between = gmstrftime('%Hh %Mm %Ss', $ajavahe); //gmstrftime() deals with different timezones correctly. (If in example you would be situated in Estonia and you would use strftime() you get wrong answer off by 2 hrs, because timezone is GMT+2 - with gmstrftime() comes right answer.)

echo 'You have worked: '.$time_between;
?>
Hope that this one makes someones life easier :D
up
-11
khaled dot ataia at gmail dot com
15 years ago
for Arabic

<?php
setlocale
(LC_ALL,'ar');
echo
strftime('%A %d %B %Y');
?>
up
-5
anton at zebooka dot com
6 years ago
This function outputs incorrect timezone.

PHP 7.1.14 (cli) (built: Feb  2 2018 08:42:59) ( NTS )

We have changed timezone several times in Russia, Novosibirsk:

$ zdump -v /usr/share/zoneinfo/Asia/Novosibirsk | tail -n10
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Oct 30 19:59:59 2010 UTC = Sun Oct 31 02:59:59 2010 +07 isdst=1
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Oct 30 20:00:00 2010 UTC = Sun Oct 31 02:00:00 2010 +06 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Mar 26 19:59:59 2011 UTC = Sun Mar 27 01:59:59 2011 +06 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Mar 26 20:00:00 2011 UTC = Sun Mar 27 03:00:00 2011 +07 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Oct 25 18:59:59 2014 UTC = Sun Oct 26 01:59:59 2014 +07 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Oct 25 19:00:00 2014 UTC = Sun Oct 26 01:00:00 2014 +06 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Jul 23 19:59:59 2016 UTC = Sun Jul 24 01:59:59 2016 +06 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Sat Jul 23 20:00:00 2016 UTC = Sun Jul 24 03:00:00 2016 +07 isdst=0
/usr/share/zoneinfo/Asia/Novosibirsk  Mon Jan 18 03:14:07 2038 UTC = Mon Jan 18 10:14:07 2038 +07 isdst=0

Incorrect:

php > echo strftime('%Y-%m-%d %H:%M:%S %z', strtotime("2015-11-15"));
2015-11-15 00:00:00 +0700

Correct:
php > echo date('Y-m-d H:i:s O', strtotime("2015-11-15"));
2015-11-15 00:00:00 +0600
To Top