當前位置: 首頁>>代碼示例>>PHP>>正文


PHP OAuth::parse_params方法代碼示例

本文整理匯總了PHP中OAuth::parse_params方法的典型用法代碼示例。如果您正苦於以下問題:PHP OAuth::parse_params方法的具體用法?PHP OAuth::parse_params怎麽用?PHP OAuth::parse_params使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在OAuth的用法示例。


在下文中一共展示了OAuth::parse_params方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($body = NULL)
 {
     if ($body) {
         if ($params = json_decode($body, TRUE)) {
             // its a JSON string
             $this->params = $params;
         } else {
             // parse as GET string
             $this->params = OAuth::parse_params($body);
         }
     }
 }
開發者ID:ZerGabriel,項目名稱:cms-1,代碼行數:12,代碼來源:response.php

示例2: parse_url

 /**
  * Parse the query string out of the URL and return it as parameters.
  * All GET parameters must be removed from the request URL when building
  * the base string and added to the request parameters.
  *
  *     // parsed parameters: array('oauth_key' => 'abcdef123456789')
  *     list($url, $params) = OAuth::parse_url('http://example.com/oauth/access?oauth_key=abcdef123456789');
  *
  * [!!] This implements [OAuth Spec 9.1.1](http://oauth.net/core/1.0/#rfc.section.9.1.1).
  *
  * @param   string  URL to parse
  * @return  array   (clean_url, params)
  * @uses    OAuth::parse_params
  */
 public static function parse_url($url)
 {
     if ($query = parse_url($url, PHP_URL_QUERY)) {
         // Remove the query string from the URL
         list($url) = explode('?', $url, 2);
         // Parse the query string as request parameters
         $params = OAuth::parse_params($query);
     } else {
         // No parameters are present
         $params = array();
     }
     return array($url, $params);
 }
開發者ID:bosoy83,項目名稱:progtest,代碼行數:27,代碼來源:oauth.php

示例3: __construct

 public function __construct($body = NULL)
 {
     if ($body) {
         $this->params = OAuth::parse_params($body);
     }
 }
開發者ID:pegasus2013,項目名稱:socialigniter,代碼行數:6,代碼來源:Oauth_Response.php


注:本文中的OAuth::parse_params方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。