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


PHP Entity::fetch方法代码示例

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


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

示例1: get_entity_by_uuid

 /**
  * @param string $uuid
  * @return \Apache\Usergrid\Response|bool
  * @throws \Apache\Usergrid\UGException
  */
 public function get_entity_by_uuid($uuid)
 {
     if (!Client::is_uuid($uuid)) {
         if ($this->client->are_exceptions_enabled()) {
             throw new UGException("Invalid UUID {$uuid}");
         }
         return FALSE;
     }
     $entity = new Entity($this->client, array('type' => $this->type, 'uuid' => $uuid));
     return $entity->fetch();
 }
开发者ID:funkyidol,项目名称:usergrid,代码行数:16,代码来源:Collection.php

示例2: get_entity

 /**
  * Fetches and returns an entity.
  *
  * @param $entity_data
  * @return \Apache\Usergrid\Entity|bool
  */
 public function get_entity($entity_data)
 {
     $entity = new Entity($this, $entity_data);
     $response = $entity->fetch();
     if ($response->get_error()) {
         $this->write_log($response->get_error_message());
         return FALSE;
     }
     return $entity;
 }
开发者ID:alphamobile,项目名称:incubator-usergrid,代码行数:16,代码来源:Client.php

示例3: fetch

 /**
  * @param $id Payment id
  */
 public function fetch($id)
 {
     return parent::fetch($id);
 }
开发者ID:firoz46,项目名称:razorpay-php,代码行数:7,代码来源:Payment.php


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