While looking over the doc's for urldecode() I came across this note:
The superglobals $_GET and $_REQUEST are already decoded. Using urldecode() on an element in $_GET or $_REQUEST could have unexpected and dangerous results.
This is the reason why a get variable with the value of %26
ends up being &
. Are there any other auto-magical decode routines other than urldecode()
? Perhaps decoding that is only done because of configuration or negotiation?