本文整理汇总了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 !');