[

mktime()

· 2004-11-28 (일) 01:27:06 · 4373 · 1
mktime
(PHP 3, PHP 4 )

mktime -- Get UNIX timestamp for a date
Description
int mktime ( [int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]])


Warning: Note the strange order of arguments, which differs from the order of arguments in a regular UNIX mktime() call and which does not lend itself well to leaving out parameters from right to left (see below). It is a common error to mix these values up in a script.

Returns the Unix timestamp corresponding to the arguments given. This timestamp is a long integer containing the number of seconds between the Unix Epoch (January 1 1970) and the time specified.

Arguments may be left out in order from right to left; any arguments thus omitted will be set to the current value according to the local date and time.

is_dst can be set to 1 if the time is during daylight savings time, 0 if it is not, or -1 (the default) if it is unknown whether the time is within daylight savings time or not. If it's unknown, PHP tries to figure it out itself. This can cause unexpected (but not incorrect) results.

Note: is_dst was added in 3.0.10.

mktime() is useful for doing date arithmetic and validation, as it will automatically calculate the correct value for out-of-range input. For example, each of the following lines produces the string "Jan-01-1998". Example 1. mktime() example

<?php
echo date ("M-d-Y", mktime (0,0,0,12,32,1997));
echo date ("M-d-Y", mktime (0,0,0,13,1,1997));
echo date ("M-d-Y", mktime (0,0,0,1,1,1998));
echo date ("M-d-Y", mktime (0,0,0,1,1,98));
?>


Year may be a two or four digit value, with values between 0-69 mapping to 2000-2069 and 70-99 to 1970-1999 (on systems where time_t is a 32bit signed integer, as most common today, the valid range for year is somewhere between 1901 and 2038).


Windows: Negative timestamps are not supported under any known version of Windows. Therefore the range of valid years includes only 1970 through 2038.


The last day of any given month can be expressed as the "0" day of the next month, not the -1 day. Both of the following examples will produce the string "The last day in Feb 2000 is: 29". Example 2. Last day of next month

<?php
$lastday = mktime (0,0,0,3,0,2000);
echo strftime ("Last day in Feb 2000 is: %d", $lastday);

$lastday = mktime (0,0,0,4,-31,2000);
echo strftime ("Last day in Feb 2000 is: %d", $lastday);
?>




Date with year, month and day equal to zero is considered illegal (otherwise it what be regarded as 30.11.1999, which would be strange behavior).

See also date() and time().<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
|

댓글 1개

해석 좀 해서 올려주시지?
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
MySQL 04-11-29 조회 6,134
MySQL 04-11-29 조회 8,622
JavaScript 04-11-28 조회 4,675
기타 04-11-28 조회 4,626
기타 04-11-28 조회 3,864
기타 04-11-28 조회 4,521
기타 04-11-28 조회 4,431
기타 04-11-28 조회 6,493
기타 04-11-28 조회 5,142
PHP 04-11-28 조회 4,559
MySQL 04-11-28 조회 5,130
JavaScript
[JavaScript]
04-11-28 조회 5,358
기타 04-11-28 조회 4,369
JavaScript
[JavaScript]
04-11-28 조회 4,374
PHP 04-11-28 조회 4,916
JavaScript
[JavaScript]
04-11-28 조회 4,283
기타
[기타]
04-11-28 조회 3,791
JavaScript 04-11-28 조회 4,553
JavaScript 04-11-24 조회 4,313
기타 04-11-23 조회 4,064
기타 04-11-23 조회 4,514
기타 04-11-23 조회 3,520
기타 04-11-23 조회 3,716
JavaScript 04-11-23 조회 4,679
기타 04-11-23 조회 4,381
기타 04-11-17 조회 7,551
기타 04-11-17 조회 4,821
JavaScript 04-11-17 조회 3,862
기타 04-11-12 조회 4,017
JavaScript 04-11-12 조회 4,890