本文整理汇总了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();
}
示例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;
}
示例3: fetch
/**
* @param $id Payment id
*/
public function fetch($id)
{
return parent::fetch($id);
}