PHP を使用して永久カレンダー関数を実装する際の重要なポイント:
•今月の処理対象の合計日数を取得 $days
•最初の日が属する曜日を取得処理する月は $dayofweek
$days 関数: 処理する月に何日あるかがわかっている場合は、ループを通じて日数を出力できます
$dayofweek の関数:毎月 1 日の曜日がわかっている場合にのみ、出力する前に日数を出力する必要があることがわかります。 スペース (空白) の数
最終的なレンダリングは次のとおりです。 :
「万年カレンダークラス」のコードは次のとおりです:
コードをコピー コードは次のとおりです:
/**
* PHP 永久カレンダー
* @author Fly 2012/10/16
*/
クラス Calendar{
protected $_table;//テーブル テーブル
protected $_currentDate; / /現在の日付
protected $_year; //年
protected $_month; //月
protected $_days; //指定された月の日数
protected $_dayofweek;//特定の月の 1 日は
/**
* コンストラクター
*/
public function __construct()
{
$this->_table=" "; this->_year = isset($_GET["y"])?$_GET["y"]:date("Y");
$this->_month = isset( $_GET["m" ])?$_GET["m"]:date("m");
if ($this->_month>12){//月が 12 より大きい状況を処理します
$this ->_month=1;
$this->_year ;
}
if ($this->month$this->_month=12;
$this->_year--;
}
$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="
日曜日 | ";月曜日 | "; >_table .="火曜日 | ";水曜日 | "; ="木曜日 | ";金曜日 | "; td style='color:red'>土曜日";  | ";$i |
"; } $nums ; } $this->_table.=" |