PHP 永久カレンダーの実装コード

WBOY
リリース: 2016-06-13 11:56:40
オリジナル
1510 人が閲覧しました

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="

".$this->_currentDate. "< ;/th>";
$this->_table.=""; =" ";
$this->_table .=""; >_table .="";
$this->_table .=""; ="";
$this->_table .=""; td style='color:red'>土曜日";
$this->_table.="";
}
/ **
* 日付情報を出力します
* 現在の日付に基づいて日付情報を出力します
* /
保護された関数 _showDate()
{
$nums=$this->_dayofweek 1;
for ($i=1;$i<=$this- >_dayofweek;$i ){//最初の
$this->_table.="";
}
の前の空白の日付を出力します ($ i=1;$i<) ;=$this->gt;_days;$i ){//日数情報を出力
if ($nums%7==0){//改行処理: 1 行あたり 7
$ this- >_table.="";
}else{
$this->_table.="";
}
$nums ;
}
$this->_table.="
日曜日月曜日火曜日水曜日木曜日金曜日
 $i
";
$this ->_table.="

";
$this->_table.="
来月

";
}
/**
* 出力カレンダー
*/
public function showCalendar ()
{
$this->showTitle();
$this->_showDate();
echo $this->}
}
$calc=newカレンダー();
$calc->showCalendar();


出典: http://www.cnblogs.com/hongfei

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート