URL_ENCODE
URL_ENCODE(Value)
Translates a text into application/x-www-form-urlencoded format.
|
Parameter |
Type |
Description |
|---|---|---|
|
|
|
Value to convert |
|
→ Result |
|
|
Example:
-
URL_ENCODE("http://www.test.com") → "http%3A%2F%2Fwww.test.com"
URL_DECODE
URL_DECODE(Value)
Decodes an application/x-www-form-urlencoded text.
|
Parameter |
Type |
Description |
|---|---|---|
|
|
|
Value to convert |
|
→ Result |
|
Decoded |
Example:
-
URL_DECODE("http%3A%2F%2Fwww.test.com") → "http://www.test.com/"