- Impact
- 16
I'm going through some Google Developer Docs and it mentions this:
Usually PHP urlencode/rawurlencode will encode all non alpha-numeric. Does this mean that it wants some others to be kept non-encoded as well such as ! (ASCII 33) and $ (ASCII 36) ?
After performing these steps, percent-escape all characters in the URL which are < ASCII 32, >= 127, "#", or "%". The escapes should use uppercase hex characters.
Usually PHP urlencode/rawurlencode will encode all non alpha-numeric. Does this mean that it wants some others to be kept non-encoded as well such as ! (ASCII 33) and $ (ASCII 36) ?




