インデックスページに現在の四半期と年を表示させたいので、時間が経つにつれて更新されます。コードの再構築についてサポートが必要です。ここにあります。ある種の掲示板カレンダーのようなものです。
$now = new DateTime();
$month = (int)$now->format("m");
$get_year = date("Y");
if ($month >= 1 AND $month <= 3) {
include_once("../index.php?year=".$get_year."&quarter=Q1");
}
elseif ($month >= 4 AND $month <= 6) {
include_once("../jet/index.php?year=".$get_year."&quarter=Q2");
}
elseif ($month >= 7 AND $month <= 9) {
include_once("../jet/index.php?year=".$get_year."&quarter=Q3");
}
else {
include_once("../jet/index.php?year=".$get_year."&quarter=Q4");
}
表示されるページの準備ができました。表示できず、次のエラーが発生します。
警告:include_once(... / index.php?year = 2012&quarter = Q3)[function.include-once]:ストリームを開くことができませんでした:121行目のD:\ xampp \ htdocs \ jet\index.phpで結果が大きすぎます
警告:include_once()[function.include]:D:\に含めるために'... / index.php?year = 2012&quarter = Q3'を開くことができませんでした(include_path ='。;D:\ xampp \ php \ PEAR') 121行目のxampp\htdocs \ jet \ index.php
誰かを助けますか?