PHP-&在标题()中

发布于 2024-11-18 10:43:02 字数 322 浏览 3 评论 0原文

我有参数:

http://example.com?ex=http://la.net?c1=a1&c2=a2&c3=a3

我想重定向到这个 URL,但是当我这样做时,我

http://example.com?ex=http://la.net?c1=a1

知道这是因为 & 符号...

I have the parameter:

http://example.com?ex=http://la.net?c1=a1&c2=a2&c3=a3

I want to redirect to this URL, but while I do it, I'm getting into

http://example.com?ex=http://la.net?c1=a1

I know that it's because of the & sign...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

雨夜星沙 2024-11-25 10:43:02

您应该对传递给 URL 的参数进行编码:

$url = "http://example.com?ex=".urlencode("http://la.net?c1=a1&c2=a2&c3=a3");
header('Location: '.$url);

You should encode parameters that is passed to URL:

$url = "http://example.com?ex=".urlencode("http://la.net?c1=a1&c2=a2&c3=a3");
header('Location: '.$url);
蓦然回首 2024-11-25 10:43:02

你应该能够做这样的事情:

header('Location: http://example.com?ex=' . urlencode($_GET['ex']));

urlencode() 接受一个字符串并以字符串可以作为 url 中的值传递的方式更改字符,这样它就不会影响整个 url。

you should just be able to do something like this:

header('Location: http://example.com?ex=' . urlencode($_GET['ex']));

urlencode() takes a string and changes the characters in a way where the string can then be passed as a value within an url so that it does not effect the entire url.

我们的影子 2024-11-25 10:43:02

尝试在参数值中使用 & 而不是 &

function fixURL($curURL){
   return preg_replace("/&/","&",$curURL);
}
$param1 = "http://la.net?c1=a1&c2=a2&c3=a3";
$param2 = "http://la.net?c1=a1";
$param3 = "http://ladelala.net?c1=a1&c2=a2&c3=a3";
$url = "http://example.com?ex=".fixURL($param1) . "&ex2=".fixURL($param2) . "&ex3=".fixURL($param3);
header('Location: '.$url);

Try using & instead of & in the parameter value.

function fixURL($curURL){
   return preg_replace("/&/","&",$curURL);
}
$param1 = "http://la.net?c1=a1&c2=a2&c3=a3";
$param2 = "http://la.net?c1=a1";
$param3 = "http://ladelala.net?c1=a1&c2=a2&c3=a3";
$url = "http://example.com?ex=".fixURL($param1) . "&ex2=".fixURL($param2) . "&ex3=".fixURL($param3);
header('Location: '.$url);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文