17 lines
263 B
Plaintext
17 lines
263 B
Plaintext
:sig
|
|
String uri_encode(String s)
|
|
|
|
:params
|
|
s : string that should be encoded
|
|
return value : an URI-encoded version of 's'
|
|
|
|
:desc
|
|
URI-encodes a string.
|
|
|
|
:see
|
|
>uri
|
|
|
|
:related
|
|
**PHP:** `urlencode()` or `rawurlencode()`
|
|
**JavaScript / Node.js:** `encodeURIComponent()`
|