閱讀 GET 資料

來自 GET 請求的資料以關聯陣列的形式儲存在超全域性 $_GET 中。

請注意,訪問不存在的陣列項會生成通知,因此應始終使用 isset()empty() 函式或 null coalesce 運算子檢查是否存在。

示例:(對於 URL /topics.php?author=alice&topic=php

$author = isset($_GET["author"]) ? $_GET["author"] : "NO AUTHOR";
$topic = isset($_GET["topic"]) ? $_GET["topic"] : "NO TOPIC";

echo "Showing posts from $author about $topic";

Version >= 7

$author = $_GET["author"] ?? "NO AUTHOR";
$topic = $_GET["topic"] ?? "NO TOPIC";

echo "Showing posts from $author about $topic";