|
IntlDateFormatter::localtimedatefmt_localtime(PHP 5 >= 5.3.0, PECL intl >= 1.0.0) IntlDateFormatter::localtime -- datefmt_localtime — Parse string to a field-based time value ОписаниеОбъектно-ориентированный стиль
array IntlDateFormatter::localtime
( string $value
[, int &$position
] )
Процедурный стиль Converts string $value to a field-based time value ( an array of various fields), starting at $parse_pos and consuming as much of the input value as possible. Список параметров
Возвращаемые значенияLocaltime compatible array of integers : contains 24 hour clock value in tm_hour field ПримерыПример #1 datefmt_localtime() example
<?php Пример #2 OO example
<?php Результат выполнения данного примера: First parsed output is tm_sec : 0 , tm_min : 0 , tm_hour : 16 , tm_year : 1969 , tm_mday : 31 , tm_wday : 4 , tm_yday : 365 , tm_mon : 11 , tm_isdst : 0 , Смотрите также
|
|