/**
* PHP 永久カレンダー
* @author Fly 2012/10/16
*/
class Calendar{
protected $_table;/ /table table
protected $_currentDate;//現在の日付
protected $_year; //年
protected $_month; //月
protected $_days; // 特定の月の日数
protected $_dayofweek;// 週の 1 日指定された月
/**
* コンストラクター
*/
パブリック関数 __construct()
{
$this->_table="";
$this->_year = isset($_GET[ "y"])?$ _GET["y"]:date("Y");
$this->_month = isset($_GET["m"])?$_GET["m"]:date( "m"); ($this->_month>12){// 月が 12 より大きい場合の状況を処理します
$this->_month=1;
}
if ( $this-> ;_month$this->_month=12;
}
$this->_currentDate = $this ->_year.'year'.$this->_month.'month';//現在取得している日付情報
$this->_days = date("t",mktime(0,0,0, $this ->_month,1,$this->_year));//指定された月の日数を取得します
$this->_dayofweek = date("w",mktime(0,0,0 ,$) this->_month,1,$this->_year));//指定された月の 1 日が何曜日であるかを取得します
}
/**
* タイトルとヘッダー情報を出力します
*/
protected function _showTitle()
{
$this->_table="
".$this->_currentDate."< ; /th>
";
$this->_table.="";
$this->_table .="日曜日 | ";
$this->_table .="月曜日 | ";
$this->_table .="< td>火曜日";
$this->_table .="水曜日 | ";
$this->_table .="木曜日 td>"; $this->_table .=" | 金曜日 | "; $this->_table .="土曜日 | "; $this->_table.="
";
}
/**
* 日付情報を出力します
* 現在の日付に基づいて日付情報を出力します
*/
保護された関数 _showDate()
{
$nums=$this-> ;_dayofweek+1; ($i=1;$i<=$this->_dayofweek;$i++){//最初の
$this->_table.="" の前の空白の日付を出力します。 ; } for ($i=1;$i<=$this->_days;$i++){//日情報を出力 if ($nums%7==0){ //改行処理: 7 1 行あたり $this->_table.=" | $i | ";
}else{
$this->_table .=""; } $nums++; } $this->_table.=" |
";
$this-> ;_table.="< ;h3>
1 月まで ;
$this->_table.="
php コード 使用 関数 対処する 幾つか 空 成し遂げる 月 の 欲しい 要点