PHPで実装されたシンプルなカレンダークラス、phpで実装されたカレンダー
この記事の例では、PHP で実装された単純なカレンダー クラスについて説明します。参考のためにみんなで共有してください。
具体的な実装コードは次のとおりです:
コードをコピーします コードは次のとおりです:
date_default_timezone_set("etc/gmt-8");
header("コンテンツタイプ: text/html; charset=utf-8");
クラスカレンダー{
var $t = 配列();
var $datesofmonth = array('1'=>'31','2'=>'28','3'=>'31','4'=>'30','5'= >'31','6'=>'30','7'=>'31','8'=>'31','9'=>'30','10'= >'31','11'=>'30','12'=>'31');
変数 $y、$m、$d
関数セット($time){
$this->t = getdate($time);
$this->y = $this->t['年'];
$this->m = $this->t['mon'];
$this->d = date('d',$time);
}
関数 isrun(){
return ($this->y%400==0 || ($this->y%4==0 && $this->y%100==0)) 1 : 0;
}
関数 first(){
$time = mktime(0,0,0,$this->m,1,$this->y);
$time = getdate($time);
$time['wday'] を返します。
}
関数html(){
$isrun = $this->isrun();
$this->datesofmonth[2] = $isrun==1
$html .= "
n";
$html .= "前月 | {$this-> ;y }年{$this->m}月来月 | n" ;
$html .= "
日曜日 | 月曜日 | 火曜日 | jb51.net水曜日 td> | | 金曜日 | 土曜日 |
n";
$html .= "n";
$first = $this->first();
for($i=0; $i
$html .= " | ";
}
$count = $this->datesofmonth[$this->m]+$first;
for ($i=1; $idatesofmonth[$this->m]; $i++){
$style = $i==$this->d ? ' style="color:red;font-weight:bold;" : '' ;
$html .= "$i | ";
if (($i==7%$first || ($i+$first)%7==0) && $i
$html .= "
n";
}
}
$count = 7-$count%7;
if ($count
for ($i=0; $i
$html .= " | ";
}
}
$html .= "
n";
$html .= "テーブル>n";
$html を返します。
}
}
$calendar = 新しいカレンダー()
;
$calendar->set(time());
echo $calendar->html();
この記事で説明した内容が皆様の PHP プログラミング設計に役立つことを願っています。
http://www.bkjia.com/PHPjc/919618.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/919618.html
技術記事
PHP で実装されたシンプルなカレンダー クラス、php で実装されたカレンダー この記事では、PHP で実装されたシンプルなカレンダー クラスについて説明します。参考のためにみんなで共有してください。 具体的な実装コードは次のとおりです。 コードをコピーします。 コードは次のとおりです...
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31
---|