本文介绍了在PHP中,JavaScript的decodeURIcomponent相当于什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个带有unicode字符的字符串,我通过HTTP传输。此字符串使用Javascript的 encodeURIcomponent()
进行编码。在PHP中是否存在与Javascript的等价函数 decodeURIComponent()
?
I have a string with unicode characters that I am transferring via HTTP. This string was encoded with Javascript's encodeURIcomponent()
. Is there an equivalent function in php to Javascript's decodeURIComponent()
?
推荐答案
urldecode()
但是你不需要使用它$ _REQUEST变量,已经自动解码。
However you do not need to use it on $_REQUEST variables, which are already decoded automatically.
这篇关于在PHP中,JavaScript的decodeURIcomponent相当于什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!