当前位置: 首页>>代码示例>>PHP>>正文


PHP Social::setStrResponse方法代码示例

本文整理汇总了PHP中Social::setStrResponse方法的典型用法代码示例。如果您正苦于以下问题:PHP Social::setStrResponse方法的具体用法?PHP Social::setStrResponse怎么用?PHP Social::setStrResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Social的用法示例。


在下文中一共展示了Social::setStrResponse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: buildResponse

 /**
  * Converts the response in JSON format to the value object i.e Social
  *
  * @param json
  *            - response in JSON format
  *
  * @return Social object filled with json data
  *
  */
 public function buildResponse($json)
 {
     $slJSONObject = $this->getServiceJSONObject("social", $json);
     $sl = new Social();
     $sl->setStrResponse($json);
     $sl->setResponseSuccess($this->isRespponseSuccess($json));
     $this->buildObjectFromJSONTree($sl, $slJSONObject);
     if ($slJSONObject->has("friends")) {
         if ($slJSONObject->__get("friends") instanceof JSONObject) {
             $friendJSONObj = $slJSONObject->__get("friends");
             $friends = new Friends($sl);
             $this->buildJsonFriends($friends, $friendJSONObj);
         } else {
             // There is an Array of attribute
             $friendsJSONArray = $slJSONObject->getJSONArray("friends");
             for ($i = 0; $i < count($friendsJSONArray); $i++) {
                 $friendJSONObj = $friendsJSONArray[$i];
                 $friends = new Friends($sl);
                 $this->buildJsonFriends($friends, $friendJSONObj);
             }
         }
     }
     if ($slJSONObject->has("profile")) {
         if ($slJSONObject->__get("profile") instanceof JSONObject) {
             $publicJSONObject = $slJSONObject->__get("profile");
             $publicfriend = new PublicProfile($sl);
             $this->buildJsonPublicProfile($publicfriend, $publicJSONObject);
         } else {
             // There is an Array of attribute
             $profileJSONArray = $slJSONObject->getJSONArray("profile");
             for ($i = 0; $i < count($profileJSONArray); $i++) {
                 $profileJSONObj = $profileJSONArray[$i];
                 $publicfriends = new PublicProfile($sl);
                 $this->buildJsonPublicProfile($publicfriends, $profileJSONObj);
             }
         }
     }
     if ($slJSONObject->has("me")) {
         if ($slJSONObject->__get("me") instanceof JSONObject) {
             $meJSONObj = $slJSONObject->__get("me");
             $me = new SocialFacebookProfile($sl);
             $this->buildJsonFacebookProfile($me, $meJSONObj);
         }
     }
     if ($slJSONObject->has("facebookProfile")) {
         if ($slJSONObject->__get("facebookProfile") instanceof JSONObject) {
             $meJSONObj = $slJSONObject->__get("facebookProfile");
             $me = new SocialFacebookProfile($sl);
             $this->buildJsonFacebookProfileLink($me, $meJSONObj);
         }
     }
     return $sl;
 }
开发者ID:murnieza,项目名称:App42_PHP_SDK,代码行数:62,代码来源:SocialResponseBuilder.php


注:本文中的Social::setStrResponse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。