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

[Function] strtotime

페이지 정보

작성자 MintState 댓글 0건 조회 13,736회 작성일 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건 3 페이지
PHP 목록
번호 제목 글쓴이 조회 날짜
115 MintState 14499 11-10
114 MintState 16159 11-10
113 MintState 17098 11-10
112 MintState 21228 11-10
111 MintState 12463 11-10
110 MintState 30535 11-10
109 MintState 15815 11-10
108 MintState 14658 11-10
107 MintState 14550 11-10
106 MintState 12588 11-10
105 MintState 20796 11-10
104 MintState 12968 11-10
103 MintState 12826 11-10
102 MintState 19980 11-10
101 MintState 11431 11-10
100 MintState 12521 11-10
99 MintState 20272 11-10
98 MintState 14294 11-10
97 MintState 12903 11-10
96 MintState 11373 11-10
95 MintState 13290 11-10
94 MintState 11861 11-03
93 MintState 11305 11-03
92 MintState 12514 11-03
91 MintState 15524 11-03
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™