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


PHP UserMapper::stopFollow方法代碼示例

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


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

示例1: array

         if ($http->getHttpAccept() == 'json') {
             Rest::sendResponse(200, json_encode($userCommentArray), 'application/json');
         } else {
             if ($http->getHttpAccept() == 'xml') {
                 $options = array('indent' => '     ', 'addDecl' => false, "defaultTagName" => "user_comment", XML_SERIALIZER_OPTION_RETURN_RESULT => true);
                 $serializer = new XML_Serializer($options);
                 Rest::sendResponse(200, $serializer->serialize($userCommentArray), 'application/xml');
             }
         }
     } else {
         Rest::sendResponse(204);
     }
     break;
 case 'delete':
     $userMapper = new UserMapper();
     if ($userMapper->stopFollow($url->getIdFirstPart(), $url->getIdSecondPart())) {
         Rest::sendResponse(200);
     }
     break;
 case 'put':
     try {
         $user_comment_ = new User_comment();
         $data_user_comment_ = $http->getRequestVars();
         $user_comment_ = initObject($data_user_comment_, $user_comment_, true);
         if (!emptyObject($user_comment_)) {
             $user_commentMapper = new \User_commentMapper();
             if ($user_commentMapper->update($user_comment_)) {
                 Rest::sendResponse(200);
             }
         } else {
             throw new InvalidArgumentException('Need arguments to UPDATA data !');
開發者ID:noxa02,項目名稱:REST_ANNONCE,代碼行數:31,代碼來源:User_Comment.controller.php


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