Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请我需要你的帮助来解决我遇到的一个小问题。我正在使用将用户重定向到他们刚刚粘贴评论的页面,并且d=3应该是动态的,即根据id采用不同的整数。
我试图像这样添加 php 变量
Header('Location: http://site/a.php?id=$articleID')
但我得到一个错误。
Header('Location: http://site/a.php?id=3')
请问我该如何克服这个问题。
谢谢
将引号从单引号更改为双引号。单引号不会解释其中的变量。
Header("Location: http://site/a.php?id=$articleID")
您不能将变量传递给单引号字符串
header("Location: http://site/a.php?id=$articleID"); exit;
不要忘记包含exit;,否则脚本的其余部分仍将执行,直到加载新页面。
exit;