Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到一个像这样的字符串:
M%C3%B2nica
所以我需要得到像“Mònica”这样的东西。
PHP中最好的方法是什么?
echo rawurldecode ('M%C3%B2nica'); // prints Mónica
您可以使用 urldecode() 或 rawurldecode(),但在您的情况下,它可能没有任何区别。(在这里阅读更多内容:urlencode vs rawurlencode?)
最短的答案:urldecode();
urldecode();