我想让我的索引页面显示当前的季度和年份,这样它会随着时间的推移而更新。我需要帮助重建我的代码。这里是。它就像某种公告板日历:
$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]:无法打开流:结果在 D:\xampp\htdocs\jet\index.php 中的第 121 行太大
警告:include_once() [function.include]: 未能打开 '.../index.php?year=2012&quarter=Q3' 以包含在 D:\ xampp\htdocs\jet\index.php 在第 121 行
帮助任何人?