날짜를 하루씩 증가시키며 출력하는 방법에 대한 소스코드이다.
(시간함수 정말 로직 짜기 헷갈린다 ㅠㅠ)
만약 2013년 1월 1일부터 2013년 4월 4일까지 하루씩 증가하며 출력하고 싶다면 다음과같이하면된다.
$start_date = '2013-01-01';
$end_date = '2013-04-04';
for($i=0 ; $date < $end_date ; $i++) {
$date = date('Y-m-d', strtotime($start_date.' +'.$i.'days'));
echo $date;
}