在PHP中,您可以使用$_COOKIE
超全局數組來獲取cookie值。以下是一個簡單的示例:
<?php
// 設置一個名為 "username" 的cookie,值為 "John Doe",并設置過期時間為1小時后
setcookie("username", "John Doe", time() + 3600, "/");
// 檢查 "username" cookie是否存在
if (isset($_COOKIE["username"])) {
echo "Username: " . $_COOKIE["username"];
} else {
echo "Username cookie is not set.";
}
?>
在這個示例中,我們首先使用setcookie()
函數設置了一個名為"username"的cookie。然后,我們使用isset()
函數檢查$_COOKIE
數組中是否存在名為"username"的cookie。如果存在,我們輸出其值;否則,我們輸出一個消息表示該cookie未設置。