Url encode

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
needs(code_samples);

Function Syntax

string url_encode(string source )

  • source is the original to encode

Returns the encoded version of the supplied source string with all non-alphanumeric characters replaced with the standard URI-encoded escape sequences. For example, spaces are replaced with "+" and other special characters are replaced by "%" followed by a two-digit (hexadecimal) character code.

See Also

to_url() | url_decode() | entity_encode() | entity_decode()

More Information

See the w3c page here for more info.

Special

String converted by this function can be returned to their original form with url_decode().