Caudium.http_decode()
 
    NAME
Caudium.http_decode()

SYNOPSIS
string Caudium.http_decode(string what);

AVAILABILITY
Caudium 1.3+

DESCRIPTION
Decode the given string from "safe" string according to RFC 2396 to plain characters.

string what
The string to decode.

RETURNS
String encoded according to RFC 2396 specifications.

EXAMPLE
Pike v7.4 release 1 running Hilfe v3.5 (Incremental Pike Frontend)
> Caudium.http_decode("this%20is%20a%20test");
(1) Result: "this is a test"
 
HTML OK CSS