You are here

class OAuthUtil in OAuth 1.0 6

Same name and namespace in other branches
  1. 6.3 lib/OAuth.php \OAuthUtil
  2. 7.3 lib/OAuth.php \OAuthUtil

Hierarchy

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