|
update : 2015.11.03
php.shukuma.com검색:
|
설명
array strptime
( string
$date
, string $format
)
strptime() returns an array with the
Month and weekday names and other language dependent strings respect the
current locale set with setlocale() ( 인수
반환값
Returns an array실패 시
예제
Example #1 strptime() example
<?php위 예제의 출력 예시:
03/10/2004 15:54:19
Array
(
[tm_sec] => 19
[tm_min] => 54
[tm_hour] => 15
[tm_mday] => 3
[tm_mon] => 9
[tm_year] => 104
[tm_wday] => 0
[tm_yday] => 276
[unparsed] =>
)
주의
참고
|