What is the equivalent of JavaScript's decodeURIcomponent in PHP?

Viewed 43212

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()?

2 Answers

rawurldecode() which does not decode plus to space charactor

Related