1

我想让我的索引页面显示当前的季度和年份,这样它会随着时间的推移而更新。我需要帮助重建我的代码。这里是。它就像某种公告板日历:

$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 行

帮助任何人?

4

2 回答 2

3

区别。

让我们回到基础,好吗?

您通过 URL 发送的内容作为“GET”在另一端接收,它需要作为 HYPERTEXT 发送到网络服务器,该服务器会将信息传递给 PHP 脚本,PHP 脚本将相应地编译它们。所以,这个逻辑是行不通的,因为在 include 中你会使用 FILE SYSTEM。

你想要做的是使用 header()

header("location: http://example.com/jet/index.php?year=$get_year&quarter=Q2");

代替

include_once("../index.php?year=".$get_year."&quarter=Q1"); 

header()将用户重定向为 HTTP 响应。

于 2012-08-14T06:39:42.930 回答
0

不要在包含字符串中传递 $_GET 变量。

准备好变量

$year='2012';
$quarter='Q3';
include_once('index.php');

然后运行包含字符串,就可以正常访问年份和季度了。确保检查变量的范围。

所以你的完整代码:

$year=$get_year;
if ($month >= 1 AND $month <= 3) {
   $quarter='Q1';
   include_once("../index.php");  
}
elseif ($month >= 4 AND $month <= 6) {
   $quarter='Q2';
   include_once("../jet/index.php");  
}
elseif ($month >= 7 AND $month <= 9) {
   $quarter='Q3';
   include_once("../jet/index.php");  
}
else {
   $quarter='Q4';
   include_once("../jet/index.php");  
}
于 2012-08-14T06:40:06.177 回答