在PHP中,如果redirect參數中帶有id,可以通過以下幾種方式解決:
$id = $_GET['id'];
header("Location: http://example.com/page.php?id=$id");
exit;
$id = $_GET['id'];
$id = urlencode($id);
header("Location: http://example.com/page.php?id=$id");
exit;
$id = $_GET['id'];
session_start();
$_SESSION['id'] = $id;
header("Location: http://example.com/page.php");
exit;
在頁面重定向后,可以通過$_SESSION[‘id’]獲取之前存儲的id參數。