??? ?? ?? CLASS ???? ???? PHP ??
1. Calendar ???? ?? ????.
2. ? ?? ???? ???? ??? ?? ??????.
3. ??? ??? ?? ??????.
4. ??, CSS ??, ??
? ??? ???? Calendar ???
<?php include_once 'calendar.php'; ?>
? ?????. include_once() ?? ???? ?? ?? ??? ??? ???? ?????. ? ??? include() ?? ?????. ??? ???? ??? ??? ?? ??? ?? ?? ???? ???? ????. ? ???? ???? ? ? ??? ? ?? ?????.
? ??? ?????:
<?php $util = new Calendar(); ?>
?? ? ? ??? ???? POST? ?? ?? ??? ???.
<?php $years = array(2014, 2015, 2016, 2017, 2018);//年份選擇自定義 $months = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);//月份數(shù)組 //獲取post的年份數(shù)據(jù) if(empty($_POST['ddlYear'])) { $year = date('Y'); }else { $year = $_POST['ddlYear']; } //獲取post的月份數(shù)據(jù) if(empty($_POST['ddlMonth'])) { $month = date('n'); }else { $month = $_POST['ddlMonth']; } ?>
???? ??????? ??? ???, ?? ??? ? ??? ???? ?????.
<?php $calendar = $util->threshold($year, $month);//獲取各個邊界值 $caculate = $util->caculate($calendar);//獲取計(jì)算日歷的天數(shù)與樣式 $draws = $util->draw($caculate);//畫表格,設(shè)置table中的tr與td ?>