我目前正在摇滚这个剧本:
<?php
if (array_key_exists('home', $_GET)) {
echo 'home goes here';
}
?>
..需要以下网址显示:
/index.php?home
我在很多网站上都看到了这个网址:
/index.php?type=home
问题:如何将上面发布的脚本转换为type = home网址?
答案 0 :(得分:0)
我认为您需要$_GET["type"]
而不是$_GET
。您必须检查$_GET["type"]
是否存在:if (isset($_GET["type"])) { /* do something */ }