我有一个字符串:
M%C3%B2nica
所以我需要得到类似“Mònica”的东西。
PHP中哪种方式最好?
答案 0 :(得分:9)
echo rawurldecode ('M%C3%B2nica'); // prints Mónica
您可以使用urldecode()或rawurldecode(),但在您的情况下,它可能没有什么区别。 (点击此处了解更多信息:urlencode vs rawurlencode?)
答案 1 :(得分:1)
最短的回答:urldecode();