$row[0],'gname'=>$row[1],'newmark'=>$row[3],'updatemark'=>$row[4],'avmark'=>$row[5],'age'=>$row[7],'tall'=>$row[10],'bust'=>$row[11],'cup'=>$row[12],'waist'=>$row[13],'hip'=>$row[14],'comment'=>$row[22],'gravure'=>$row[27],'date'=>$row[44]); } fclose($handle); // 2021.01.06 空チェック追加 if (!empty($data)){ foreach($data as $key => $row){ $id[$key] = $row['id']; $date[$key] = $row['date']; } array_multisort($date, SORT_DESC, $id, SORT_ASC, $data); $sc00 = date("md"); $handle = fopen("log/sc/".$sc00.".dat", "r"); while (($row = fgetcsv($handle, 1024, ",")) !== FALSE){ $today_sc[] = array('id'=>$row[0]); } fclose($handle); if ($today_sc != FALSE){ foreach($today_sc as $key => $row){ $today_sc[$key] = $row[id]; } } } // ------------------------ // Smartyに割り当て // ------------------------ // メッセージ $smarty->assign("msg",$msg); $smarty->assign("data",$data); $smarty->assign("today_sc",$today_sc); // ------------------------ // Smartyを表示 // ------------------------ $smarty->display(basename($_SERVER['SCRIPT_NAME'],".html").".tpl"); ?>