If i want to create an url using a variable i have two choices to encode the string. urlencode() and rawurlencode().
What exactly are the differences and which is preferred?
|
It will depend on your purpose. If interoperability with other systems is important then it seems rawurlencode is the way to go. The one exception is legacy systems which expect the query string to follow form-encoding style of spaces encoded as + instead of %20 (in which case you need urlencode). rawurlencode follows RFC 1738 prior to PHP 5.3.0 and RFC 3986 afterwards (see http://us2.php.net/manual/en/function.rawurlencode.php)
Note on RFC 3986 vs 1738. rawurlencode prior to php 5.3 encoded the tilde character ( urlencode encodes spaces as plus signs (not as
This corresponds to the definition for application/x-www-form-urlencoded in RFC 1866. Additional Reading: You may also want to see the discussion at http://bytes.com/groups/php/5624-urlencode-vs-rawurlencode. Also, RFC 2396 is worth a look. RFC 2396 defines valid URI syntax. The main part we're interested in is from 3.4 Query Component:
As you can see, the |
|||||||||||||||||||||
|
|
Proof is in the source code of PHP. I'll take you through a quick process of how to find out this sort of thing on your own in the future any time you want. Bear with me, there'll be a lot of C source code you can skim over (I explain it). If you want to brush up on some C, a good place to start is our SO wiki. Download the source, grep all the files for the function name, you'll find something such as this: PHP 5.3.6 (most recent at time of writing) describes the two functions in their native C code in the file url.c. RawUrlEncode()
UrlEncode()
Okay, so what's differnt here? They both are in essence calling two differnt internal functions respectively: php_raw_url_encode and php_url_encode So go look for those functions! Lets look at php_raw_url_encode
And of course, php_url_encode:
One quick bit of knowledge before I move forward, EBCDIC is another character set, similar to ASCII, but a total competitor. PHP attempts to deal with both. But basically, this means byte EBCDIC 0x4c byte isn't the Both of these functions manage EBCDIC if the web server has defined it. Also, they both use an array of chars (think string type)
Beyond that, the functions are really different, and I'm going to explain them in ASCII and EBCDIC. Differences in ASCII:URLENCODE:
RAWURLENCODE:
Note: Many programmers have probably never seen a for loop iterate this way, it's somewhat hackish and not the standard convention used with most for-loops, pay attention, it assigns
Differences:
They basically iterate differently, one assigns a + sign in the event of ASCII 20. Differences in EBCIDC:URLENCODE:
RAWURLENCODE:
Grand Summary
Disclaimer: I haven't touched C in years, and I haven't looked at EBCDIC in a really really long time. If I'm wrong somewhere, let me know. Suggested implementationsBased on all of this, rawurlencode is the way to go most of the time. As you see in Jonathan Fingland's answer, stick with it in most cases. It deals with the modern scheme for URI components, where as urlencode does things the old school way, where + meant "space." If you're trying to convert between the old format and new formats, be sure that your code doesn't goof up and turn something that's a decoded + sign into a space by accidentally double-encoding, or similar "oops" scenarios around this space/20%/+ issue. If you're working on an older system with older software that doesn't prefer the new format, stick with urlencode, however, I believe %20 will actually be backwards compatible, as under the old standard %20 worked, just wasn't preferred. Give it a shot if you're up for playing around, let us know how it worked out for you. Basically, you should stick with raw, unless your EBCDICB system really really hates you. Most programmers will never run into EBCDICB on any system made after the year 2000, maybe even 1990 (that's pushing, but still likely in my opinion). |
|||||||||||||||||||
|
yields
while
yields
The difference being the urlencode differs from RFC 1738 by encoding spaces as |
|||
|
|
|
The difference is in the return values, i.e:
The two are very similar, but the latter (rawurlencode) will replace spaces with a '%' and two hex digits, which is suitable for encoding passwords or such, where a '+' is not e.g.:
|
|||
|
|
I believe spaces must be encoded as:
The following example shows the correct use of
Output:
What happens if you encode path and query string components the other way round? For the following example:
|
|||||||
|
|
One practical reason to choose one over the other is if you're going to use the result in another environment, for example JavaScript. In PHP But if you need to "decode" this in JavaScript using decodeURI() function then In other words the space (" ") encoded by urlencode to plus ("+") in PHP will not be properly decoded by decodeURI in JavaScript. In such cases the rawurlencode PHP function should be used. |
|||||
|
|
|||
|
|
1. What exactly are the differences andThe only difference is in the way spaces are treated: urlencode - based only legacy implementation converts spaces to + rawurlencode - based on RFC 1738 translates spaces to %20 The reason for the difference is because + is reserved and valid (unencoded) in urls. 2. which is preferred?
Fair enough, I have a simple strategy that I follow when making these decisions which I will share with you in the hope that it may help. I think it was the HTTP/1.1 specification RFC 2616 which called for "Tolerant applications"
When faced with questions like these the best strategy is always to consume as much as possible and produce what is standards compliant. So my advice is to use Now you could just take my word for it but since there's a bounty after all heheh just kidding, maybe seeing the following would make you agree.
It would appear that PHP had exactly this in mind, even though I've never come across anyone refusing either of the two formats I cant think of a better strategy to solve your requirement, can you? nJoy! |
|||
|
|
rawurlencode. You'll seldom run into a system that chokes when given spaces encoded as%20, while systems that choke on spaces encoded as+are more common. – Anomie Aug 4 '11 at 11:05