見HTTP GET Variables
如果您的網址是
www.example.com/index.php?name=Joanna
這意味着$_GET["name"]
是 「喬安娜」。
所以在PHP中,你可以輸出:
<?php echo "Hi ".$_GET["name"]."!"; ?>
,它會輸出,在這種情況下:
嗨喬安娜!
您還可以檢查該變量存在,並且不爲空通過執行下列操作之一:
isset($_GET["name"]) //will return true even if $_GET==""
!empty($_GET["name"])
$_GET["name"]!=""
所以你可以在你的PHP輸出更改爲:
if(!empty($_GET["name"])){
$name = $_GET["name"];
} else {
$name = "guest";
}
echo "Hi, ".$name."!";
如果$_GET["name"]
爲空,將輸出「guest」。
較短以上的版本:
echo "Hi, ".(empty($_GET["name"]) ? "guest" : $_GET["name"])."!";
來源
2015-11-04 17:04:36
Ben
http://stackoverflow.com/questions/13852424/correct-syntax-for-hyperlink-url-with-php-get - HTTP:// PHP。 net/manual/en/reserved.variables.get.php - http://stackoverflow.com/questions/33497892/how-to-use-get-a-html-href-asd –
謝謝 - 正如所說,我不能' t找到正確的東西,因爲我不知道它叫什麼:) –
歡迎您和*歡迎使用Stack * –