while($content = $list->hasNext()) {
if (strtotime($cal_year."-".$cal_month."-01") <= strtotime($content->option->name) && strtotime($cal_year."-".$cal_month."-".$cal_last_day) >= strtotime($content->option->tel)) {
// [ ( ) ]
$cal_start_i = (int)substr($content->option->name, -2);
$cal_end_i = (int)substr($content->option->tel, -2);
}
if (strtotime($cal_year."-".$cal_month."-01") > strtotime($content->option->name) && strtotime($cal_year."-".$cal_month."-"."-01") <= strtotime($content->option->tel) && strtotime($cal_year."-".$cal_month."-".$cal_last_day) >= strtotime($content->option->tel)) {
// ( [ ) ]
$cal_start_i = 1;
$cal_end_i = (int)substr($content->option->tel, -2);
}
if (strtotime($cal_year."-".$cal_month."-01") <= strtotime($content->option->name) && strtotime($cal_year."-".$cal_month."-".$cal_last_day) >= strtotime($content->option->name) && strtotime($cal_year."-".$cal_month."-".$cal_last_day) < strtotime($content->option->tel)) {
// [ ( ] )
$cal_start_i = (int)substr($content->option->name, -2);
$cal_end_i = 31;
}
if (strtotime($cal_year."-".$cal_month."-01") > strtotime($content->option->name) && strtotime($cal_year."-".$cal_month."-".$cal_last_day) < strtotime($content->option->tel)) {
// ( [ ] )
$cal_start_i = 1;
$cal_end_i = 31;
}
if (strtotime($cal_year."-".$cal_month."-01") > strtotime($content->option->tel)) {
// ( ) [ ]
$cal_start_i = 0;
$cal_end_i = 0;
}
if (strtotime($cal_year."-".$cal_month."-".$cal_last_day) < strtotime($content->option->name)) {
// [ ] ( )
$cal_start_i = 0;
$cal_end_i = 0;
}
$cal_list_count = 0;
$select_std = explode("-", $content->option->name);
$select_std_day = $select_std[2];
$select_end = explode("-", $content->option->name);
$select_end_day = $select_end[2];
저 조건이 이상한건가요? name이 시작날이고 tel이 종료날 입니다. cal_last_day는 마지막날입니다.
안녕하세요~^^
올려주신 코드는 직접 작성하신 건지요?
해당 코드만으로는 어떤 걸 하시려는지 저희 쪽에서 파악하기 어렵습니다.
또한 출력문이 없어서 기존에 작성한 글이 사라지는 현상도 발견하지 못했습니다.
$cal_year, $cal_month, $cal_last_day 변수에 임의 값을 넣고
$select_std, $select_end 변수를 확인해보니 게시글 수만큼 표시되는 것을 확인했습니다.
어떤 부분에 도움이 필요하신지 알려주시면
저희도 도움 드릴 방법을 찾아보겠습니다.
고맙습니다.