Home » Programming » PHP » Php Urlencode

Encode Strings with PHP urlencode/rawurlencode [Examples]

One way to pass data to a web page is via the URL query string. The data must be properly encoded – urlencode() and rawurlencode() in PHP do this.

The PHP urlencode() function URL encodes strings in PHP and is widely used, but it is not the best tool for the job.  rawurlencode() is the modern replacement for urlencode() – though you may need to use the older urlencode() for compatibility if you’re working on older code.

urlencode() Syntax

urlencode($string)

Note that:

  • urlencode() will return a string variable containing the URL encoded value
    • Non-alpha-numeric characters (other than dashes, underscores, and periods) will be replaced with a percent (%) symbol and a hexadecimal digit pair
    • Spaces will be replaced with a plus (+) symbol
  • $string is the string or string variable to be encoded

urlencode() Example

Below, urlencode() is used to encode a string for safe use in a URL:

$encoded = urlencode('to be, or not to be?');
echo $encoded;

Here’s the output:

to+be%2C+or+not+to+be%3F

You can see that the spaces have all been replaced with plus symbols (+) and non-alphanumeric characters replaced with a percent (%) symbol and two hexadecimal characters.

Decoding with urldecode()

urlencode() can be reversed with urldecode, which returns the original string.

$encoded = urlencode('to be, or not to be?');
echo $encoded;
echo "\n";
$decoded = urldecode($encoded);
echo $decoded;

Which will return:

to be, or not to be?

rawurlencode() – The Superior PHP URL Encoder

rawurlencode() is the modern replacement for urlencode() and should be used instead unless legacy compatibility is required. The syntax is the same:

rawurlencode($string)

Note that:

  • It works the same as urlencode()
  • However, it uses a better encoding system
    • For example, rather than replacing spaces with a plus symbol, it replaces them with a percent sign and hexadecimal character pair, reducing the chances of a value containing spaces and plusses being incorrectly parsed

rawurlencode() and rawurldecode() Example

In the example below, the same string as used in the above example is encoded using rawurlencode():

$encoded = rawurlencode('to be, or not to be?');
echo $encoded;
echo "\n";
$decoded = rawurldecode($encoded);
echo $decoded;

Which will output the encoded and decoded strings:

to%20be%2C%20or%20not%20to%20be%3F
to be, or not to be?

The string is encoded in a way that is less likely to be parsed incorrectly due to using unencoded symbols as separators.

For more information and examples on using rawurlencode(), check out the official PHP documentation.

SHARE:
Photo of author
Author
I'm Brad, and I'm nearing 20 years of experience with Linux. I've worked in just about every IT role there is before taking the leap into software development. Currently, I'm building desktop and web-based solutions with NodeJS and PHP hosted on Linux infrastructure. Visit my blog or find me on Twitter to see what I'm up to.

Leave a Comment