How to not automatically pass $_GET through urldecode(), is there a way?
I have a $_GET['abc'] variable that sometimes has '+' in it's value, and the value should remain as-is. But PHP passes all GET variables automatically through urldecode() and converts the pluses into spaces.
How can I make PHP not using urldecode automatically? It would be OK to use rawurldecode() that actually folows RFC1738.