DecodeFromURL()

Decodes a string that has been encoded in the URL using the encodeForURL. this function is deprecated, use function ESAPIDecode('url',...) instead.

Requires Extension: ESAPI extension

DecodeFromURL( string=string );

Returns: String

Argument Description
string
string, required

string to encode

Examples

enc=encodeForURL('https://download.lucee.org/?type=releases');
	dump(enc);
	dec=decodeFromURL(enc);
	dump(dec);

See also