URL encode and decode

This commit is contained in:
houseme
2021-11-16 00:59:15 +08:00
parent 0135d23b16
commit 857ca4d978

View File

@ -27,14 +27,14 @@ func Decode(str string) (string, error) {
return url.QueryUnescape(str)
}
// RawEncode Encodes the given string according
// RawEncode does encode the given string according
// URL-encode according to RFC 3986.
// See http://php.net/manual/en/function.rawurlencode.php.
func RawEncode(str string) string {
return strings.Replace(url.QueryEscape(str), "+", "%20", -1)
}
// RawDecode does decode
// RawDecode does decode the given string
// Decode URL-encoded strings.
// See http://php.net/manual/en/function.rawurldecode.php.
func RawDecode(str string) (string, error) {