本文整理汇总了PHP中Parse\ParseObject::getUpdatedAt方法的典型用法代码示例。如果您正苦于以下问题:PHP ParseObject::getUpdatedAt方法的具体用法?PHP ParseObject::getUpdatedAt怎么用?PHP ParseObject::getUpdatedAt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parse\ParseObject
的用法示例。
在下文中一共展示了ParseObject::getUpdatedAt方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getABeacon
function getABeacon(ParseObject $object)
{
$beacon = new stdClass();
$beacon->objectId = $object->getObjectId();
$beacon->uuid = $object->get('UUID');
$beacon->beaconColor = $object->get('beaconColor');
if (count($object->getRelation("brand")->getQuery()->find()) != 0) {
$beaconBrand = $object->getRelation("brand")->getQuery()->find();
$beacon->brand = getABrand($beaconBrand[0]);
} else {
$beacon->brand = null;
}
$beacon->major = $object->get('major');
$beacon->minor = $object->get('minor');
$beacon->name = $object->get('name');
if ($object->get('region') != null) {
$beaconRegion = $object->get('region')->fetch();
$beacon->region = getARegion($beaconRegion);
} else {
$beacon->region = null;
}
$beacon->type = $object->get('type');
$beacon->createdAt = $object->getCreatedAt();
$beacon->upadtedAt = $object->getUpdatedAt();
return $beacon;
}
示例2: mergeFromObject
/**
* Merge data from other object.
*
* @param ParseObject $other
*/
private function mergeFromObject($other)
{
if (!$other) {
return;
}
$this->objectId = $other->getObjectId();
$this->createdAt = $other->getCreatedAt();
$this->updatedAt = $other->getUpdatedAt();
$this->serverData = $other->serverData;
$this->operationSet = [];
$this->hasBeenFetched = true;
$this->rebuildEstimatedData();
}
示例3: parseObjectToArray
/**
* @return array
*/
public function parseObjectToArray(ParseObject $object)
{
$array = $object->getAllKeys();
$array['objectId'] = $object->getObjectId();
$createdAt = $object->getCreatedAt();
if ($createdAt) {
$array['createdAt'] = $this->dateToString($createdAt);
}
$updatedAt = $object->getUpdatedAt();
if ($updatedAt) {
$array['updatedAt'] = $this->dateToString($updatedAt);
}
if ($object->getACL()) {
$array['ACL'] = $object->getACL()->_encode();
}
foreach ($array as $key => $value) {
if ($value instanceof ParseObject) {
if ($value->getClassName() == $this->parseObject->getClassName() && $value->getObjectId() == $this->parseObject->getObjectId()) {
// If a key points to this parent object, we will skip it to avoid
// infinite recursion.
} elseif ($value->isDataAvailable()) {
$array[$key] = $this->parseObjectToArray($value);
}
} elseif ($value instanceof ParseFile) {
$array[$key] = $value->_encode();
}
}
return $array;
}