gpt4 book ai didi

php - 如何在 php 上从 GET 变量回显 javascript 编码的 url

转载 作者:可可西里 更新时间:2023-11-01 00:54:14 24 4
gpt4 key购买 nike

如何在 php 上从 GET 方法回显解码后的 url,

我有这个链接:

localhost/whatsapp?text=Hello%2C%20Who%20are%20U%3F%0AName%3A%20%0AAddress%3A%20%0AAge%3A%20

使用此代码

$text = $_GET['text'];
header("Location: https://web.whatsapp.com/send?phone=00000000&text=".$text);

但是报错

Warning: Header may not contain more than a single header, new line detected in index.php on line

最佳答案

当您从 $_GET 检索值时,它们会被 URL 解码。如果你想把它传回去,你需要重新编码,这样换行符、空格和其他奇怪的字符就被编码了。为此使用 urlencode($text)

$text = $_GET['text'];
header("Location: https://web.whatsapp.com/send?phone=00000000&text=".urlencode($text));

关于php - 如何在 php 上从 GET 变量回显 javascript 编码的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55965114/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com