我无法理解 if 语句。为什么我不能只检查 $view 是否设置?还有 2 个问题 - "$_GET("$view")!" 是什么意思 “!” 标志是什么意思?有什么作用!改变?此外,为什么它等于=“”?
<?php
$myurl=htmlspecialchars($_SERVER["PHP_SELF"]);
$view="";
if(isset($_GET["$view"]) && $_GET("$view")! = "") { $view =$_GET["$view"];};
include(head.html);
switch($view] {
case "" :
include(main.html);
break;
case "people" :
include(people.html);
break;
case:"contact":
include(contact.html);
break;
default :
include(404.html);
break;
};
include_once(foot.html;
?>
感谢所有的帮助