awis.uriencode.au3

License

Author

Original by Prog@ndy

Description

A library providing function to encode and decode Uniform Resource Identifiers

Summary
awis.uriencode.au3
Functions
_URIEncodeURL-encodes string
_URIDecodeDecodes URL-encoded string

Functions

_URIEncode

Func _URIEncode($sData)

URL-encodes string

Parameters

$sDataThe string to be encoded.

Returns

Returns a string in which all non-alphanumeric characters except -_. have been replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs.  It is encoded the same way that the posted data from a WWW form is encoded, that is the same way as in application/x-www-form-urlencoded media type.

_URIDecode

Func _URIDecode($sData)

Decodes URL-encoded string

Parameters

$sDataThe string to be decoded.

Returns

Returns the decoded string.

Func _URIEncode($sData)
URL-encodes string
Func _URIDecode($sData)
Decodes URL-encoded string