当前位置: 首页>>代码示例>>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;未经允许,请勿转载。