PHP 함수중에 strtotime 함수가 있습니다.
이 함수를 사용하면 원하는 날짜의 데이터를 쉽게 구할수 있습니다.
$a[] = date('Y-m-d', strtotime('first day')); # 02/01/10
$a[] = date('Y-m-d', strtotime('last day')); # 02/28/10
$a[] = date('Y-m-d', strtotime('last day next month')); # 03/31/10
$a[] = date('Y-m-d', strtotime('last day last month')); # 01/31/10
$a[] = date('Y-m-d', strtotime('2013-01 last day')); # 12/31/09
- this doesn't work if you reverse the order of the year and month
$a[] = date('Y-m-d', strtotime('2013-01')); # 03/01/09
$a[] = date('Y-m-d', strtotime('last day of april 2013')); # 03/31/09
$a[] = date('Y-m-d', strtotime('last day of march')); # 03/31/10
$a[] = date('Y-m-d', strtotime('this sunday')); # 02/01/10
$a[] = date('Y-m-d', strtotime('last monday')); # 02/28/10
echo "<pre>";
print_r($a);
echo "</pre>";
- 결과
[0] => 2013-01-25 [1] => 2013-01-23 [2] => 2013-02-23 [3] => 2012-12-23 [4] => 2012-12-31 [5] => 2013-01-31 [6] => 2013-01-01 [7] => 2013-04-30 [8] => 2013-03-31 [9] => 2013-01-27 [10] => 2013-01-21
''.' Programs > PHP' 카테고리의 다른 글
윈도우 APACHE + PHP 연동시 오류 해결법. (1) | 2012.10.05 |
---|---|
PHP 에서 Magic Packet (WOL : 컴퓨터 원격 부팅) 을 보내는 소스. (0) | 2012.09.25 |
PHP 에서 ping 체크 .. (0) | 2012.09.25 |
[PHP] 날짜 분, 초 차이 구하기. (0) | 2012.09.03 |
다차원 배열의 모든 값을 지정함수로 필터처리 (0) | 2012.07.05 |