转换 +到字符串 PHP 中的 %2B
所以我一直在调试一个脚本,传递到其中的许多数据都包含这个符号:“+”。我发现如果我将其更改为 %2B 就可以了。我知道这肯定是一个非常基本的问题,但在浏览 PHP 文档后,我找不到解决方案。有没有内置的 PHP 函数可以像这样转换 ascii 符号?
So I have been debugging a script and a lot of the data being passed into it contained this symbol: '+'. I discovered that if I changed it to %2B that it worked. I know this must be sort of a very basic question but after poking around the PHP documentation, I couldn't find a solution. Is there a built-in PHP function for converting ascii symbols like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真的是
%2
吗?不是%2B
?您似乎正在找到
urlencode
函数。Is it really
%2
? not%2B
?It looks like you're finding
urlencode
function.