class OAuthUtil in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthUtil
- 7.3 lib/OAuth.php \OAuthUtil
Hierarchy
- class \OAuthUtil
Expanded class hierarchy of OAuthUtil
3 string references to 'OAuthUtil'
- OAuthRequest::get_signable_parameters in ./
OAuth.php - Returns the normalized parameters of the request
- OAuthRequest::get_signature_base_string in ./
OAuth.php - Returns the base string of this request
- OAuthSignatureMethod_HMAC_SHA1::build_signature in ./
OAuth.php
File
- ./
OAuth.php, line 725
View source
class OAuthUtil {
/*{{{*/
public static function urlencodeRFC3986($string) {
/*{{{*/
return str_replace('%7E', '~', rawurlencode($string));
}
/*}}}*/
public static function urldecodeRFC3986($string) {
/*{{{*/
return rawurldecode($string);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OAuthUtil:: |
public static | function | ||
OAuthUtil:: |
public static | function |