gpt4 book ai didi

php - GET 和 PHP 中的符号

转载 作者:太空狗 更新时间:2023-10-29 14:45:30 25 4
gpt4 key购买 nike

我有一个生成新照片库的简单表单,将标题和描述发送到 MySQL,并将用户重定向到他们可以上传照片的页面。

一切正常,直到“&”号进入等式。信息从 jQuery 模态对话框发送到 PHP 页面,然后该页面将条目提交到数据库。 Ajax 成功完成后,用户将被发送到带有 GET URL 的上传页面,以告诉该页面它正在上传到哪个相册 --

$.ajax ({
type: "POST",
url: "../../includes/forms/add_gallery.php",
data: $("#addGallery form").serialize(),
success: function() {
$("#addGallery").dialog('close');
window.location.href = 'display_album.php?album=' + title;
}
});

如果标题有符号,则上传页面上的标题字段无法正确显示。有没有办法为 GET 转义 & 符号?

谢谢

最佳答案

一般来说,您需要 URL-encode当您将它们作为 URL 的一部分传递时,任何不完全由字母数字组成的内容。

在 URL 编码中,& 被替换为 %26(因为 0x26 = 38 = & 的 ASCII 码)。

要在 Javascript 中执行此操作,您可以使用函数 encodeURIComponent :

$.ajax ({
type: "POST",
url: "../../includes/forms/add_gallery.php",
data: $("#addGallery form").serialize(),
success: function() {
$("#addGallery").dialog('close');
window.location.href = 'display_album.php?album=' + encodeURIComponent(title);
}
});

请注意 escape缺点是 + 没有编码,服务器端会解码为空格,因此应该避免(source)。

如果您希望在 PHP 级别执行此服务器端操作,则需要使用函数 urlencode .

关于php - GET 和 PHP 中的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2748042/

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