0
$pages = array("grac", "zamknij", "dolaczyc");
$pagesid = array("showNews", "showThread", "showProfile");

foreach ($pagesid as $page) {
  if (isset($_GET[$page])) {
  include('sobra/'.$page.'.php');
  }
}

// just pages
elseif (in_array($_GET['page'], $pages)) {
include("$_GET[page].php");
}

// error
else include('error.php');

给出:
解析错误:语法错误,第 33 行 C:\WAMP\www\sdgag\index.php 中的意外 T_ELSEIF

我认为这应该可行..问题可能是什么?

谢谢

4

4 回答 4

8

elseif 和 else 没有附加到 if,您已将它们放在 foreach 循环块之外。

于 2009-02-19T20:31:39.313 回答
4

也许是另一种方法。执行您的逻辑,并确定最终要包含的页面。完成所有逻辑后,包括您确定的页面。

以下内容未经测试,可能包含错误。让我知道,我会更新代码。

<?php

  // Predefined list of acceptable pages
  $pages = array("one","two","three");
  $pagesid = array("four","five","six");

  // Gather any user-defined page request
  $desPage = trim($_GET["page"]);

  // Assume they are wrong, and need to see error.php
  $pageToLoad = "error.php";

  // If the user request is not empty
  if (!empty($desPage)) {
    if (in_array($desPage,$pages)) {
      $pageToLoad = $desPage . ".php";
    }
  } else {
  // User request is empty, check other variables
    foreach ($pagesid as $pageid) {
      if (isset($_GET[$pageid])) {
        $pageToLoad = $pageid . ".php";
      }
    }
  }

  // Show output page
  include($pageToLoad);

?>
于 2009-02-19T20:44:22.563 回答
3

在 else 之前有一个右括号。

它应该是:

$pages = array("grac", "zamknij", "dolaczyc");
$pagesid = array("showNews", "showThread", "showProfile");

foreach ($pagesid as $page) {
  if (isset($_GET[$page])) {
    include('sobra/'.$page.'.php');
  }
  // just pages
  else if (in_array($_GET['page'], $pages)) {
    include("$_GET[page].php");
  }
  // error
  else include('error.php');
}   

如果您正确缩进源代码,则此类错误会很快出现,您可以自己修复它们。

于 2009-02-19T20:31:30.250 回答
-2
$pages = array('grac', 'zamknij', 'dolaczyc');
$pagesid = array('showNews', 'showThread', 'showProfile');

foreach ($pagesid as $page) {
  if (isset($_GET[$page])) {
    include('sobra/'.$page.'.php');
  }
  // just pages
  else if (in_array($_GET['page'], $pages)) {
    include($_GET[$page].'.php'); // fixed missing $, restylized to match previous style
  }
  else include('error.php');
}
于 2009-02-19T20:39:23.323 回答