/*
checkdate
bool = checkdate(int month, int day, int year)
http://php.net/manual/en/function.checkdate.php
*/
$valid_date = checkdate(12,31,1999);
if($valid_date)
{
echo "YES";
}
else
{
echo "NO";
}
/*
time
int = time()
http://php.net/manual/en/function.time.php
*/
$nextWeek = time() + (7 * 24 * 60 * 60);
echo $nextWeek;
/*
mktime
int = mktime(int hour, int minute, int second, int month, int day, int year, int is_dst)
http://php.net/manual/en/function.mktime.php
*/
$maketime = mktime();
echo $maketime;
$maketime = mktime(10,10,30,12,31,1999);
echo $maketime;
/*
date
string = date(string format, int timestamp)
http://php.net/manual/en/function.date.php
*/
$maketime = mktime(10,10,30,01,01,2000);
// Year
echo date("L", $maketime); // leap year 1 true, 0 false
echo date("Y", $maketime); // year 4 digits, 2000
echo date("y", $maketime); // year 2 digits, 00
// Month
echo date("F", $maketime); // month full text, January
echo date("M", $maketime); // month 3 letters, Jan
echo date("m", $maketime); // month 2 digits, 01
echo date("n", $maketime); // month 1 digits, 1
echo date("t", $maketime); // last day of month
// Day
echo date("d", $maketime); // day 2 digits, 01
echo date("j", $maketime); // day 1 digits, 1
echo date("l", $maketime); // day full text, Sunday
echo date("D", $maketime); // day 3 letters, Sun
echo date("w", $maketime); // day representation, 0~6
echo date("S", $maketime); // day 2 letters, nd
echo date("z", $maketime); // day of the year, 0~365
// Time
echo date("g", $maketime); // time 1 digits, 1~12
echo date("h", $maketime); // time 2 digits, 01~12
echo date("G", $maketime); // time 1 digits, 1~24
echo date("H", $maketime); // time 2 digits, 01~24
echo date("a", $maketime); // am, pm
echo date("A", $maketime); // AM, PM
echo date("i", $maketime); // minute 2 digits, 00~59
echo date("s", $maketime); // second 2 digits, 00~59
// Date
echo date("c", $maketime); // ISO 8601, 1999-12-31 T10:10:30+09:00
echo date("r", $maketime); // RFC 2822, Sat 10 Nov 2000 10:10:30+12:00
echo date("U", $maketime); // TimeStamp
/*
getdate
array = getdate(int timestamp)
http://php.net/manual/en/function.getdate.php
*/
$array_time = getdate(time());
foreach($array_time as $key=>$value)
{
echo $key . ":" . $value . "
";
}
echo $array_time["0"];
echo $array_time["month"];
echo $array_time["weekday"];
echo $array_time["yday"];
echo $array_time["year"];
echo $array_time["mon"];
echo $array_time["wday"];
echo $array_time["mday"];
echo $array_time["hours"];
echo $array_time["minutes"];
echo $array_time["seconds"];
/*
microtime
mixed = microtime(bool get_as_float)
http://php.net/manual/en/function.microtime.php
*/
echo microtime(FALSE);
echo microtime(TRUE);
2014년 12월 9일 화요일
PHP 날짜,시간 함수
피드 구독하기:
댓글 (Atom)
플러터 단축키
1. 위젯 감싸기/벗기기 비주얼 스튜디오 : Cmd + . 안드로이드 스튜디오 : Alt + Enter 2. 코드 정렬 비주얼 스튜디오 : Ctrl + S 안드로이드 스튜디오 : Ctlr + Alt + L 3. StatelessWidget ->...
-
컴퓨터로 일본어를 입력하려면 일본어 키보드를 쓰면 편하겠지만, 자판배열을 외워야하는 단점이 있다. MS IME 를 사용하면, 간단히 발음 나는대로 영어로 입력을 하면, 일본어 입력을 할 수 있다. ~을 / ~를 에 해당하는 조사...
-
http://www.websitenotworking.com 사이트 접속이 되는지 안되는지 느려서 확인이 안될때, 나만 그런거 같기도 하고, 서버가 다운이 됐나? 싶을때 확인할 수 있는 사이트다.
댓글 없음:
댓글 쓰기