YesYo.com MintState Forums
뒤로    Go3.co.kr MintState BBS > Tech > PHP
검색
멤버이름    오토
비밀번호 
 

[Function] strtotime

페이지 정보

작성자 MintState 댓글 0건 조회 14,384회 작성일 08-11-03 11:17

본문

[Function] strtotime

strtotime
(PHP 3>= 3.0.12, PHP 4 , PHP 5)

strtotime --  Parse about any English textual datetime description into a Unix timestamp
설명
int strtotime ( string time [, int now])

The function expects to be given a string containing an English date format and will try to parse that format into a Unix timestamp relative to the timestamp given in now, or the current time if none is supplied. Upon failure, -1 is returned.

Because strtotime() behaves according to GNU date syntax, have a look at the GNU manual page titled Date Input Formats. Described there is valid syntax for the time parameter.

예 1.
<?php
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";
?>


예 2. - sql의 필드가 datetime 일때 유용 합니다.
<?
$key_time = '2006-10-24 18:30:53';
echo $key_time."<br />";

$strtime = strtotime($key_time);
echo $strtime."<br />";

$r_time = date("r",$strtime);
echo $r_time."<br />";

$datetime = date('Y-m-d h:i:s', $strtime);
echo $datetime."<br />";

echo date("Y-m-d h:i:s", mktime(18, 30, 53, 10, 24, 2006));
?> 

댓글목록

등록된 댓글이 없습니다.

Total 165건 4 페이지
PHP 목록
번호 제목 글쓴이 조회 날짜
90 MintState 15393 11-03
89 MintState 15201 11-03
88 MintState 15492 11-03
열람중 MintState 14385 11-03
86 MintState 25240 11-03
85 MintState 20322 11-03
84 MintState 24136 11-03
83 MintState 16367 11-03
82 MintState 18991 11-03
81 MintState 20669 11-03
80 MintState 13164 11-03
79 MintState 14200 11-03
78 MintState 15194 11-03
77 MintState 15058 11-03
76 MintState 11105 11-03
75 MintState 15825 11-03
74 MintState 17462 11-03
73 MintState 13509 11-03
72 MintState 15192 11-03
71 MintState 11003 11-03
70 MintState 11908 11-03
69 MintState 15007 11-03
68 MintState 14968 11-03
67 MintState 13245 11-03
66 MintState 12880 11-03
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2025, Go3.co.kr MintState. ™