本文整理匯總了PHP中Parse\ParseObject::getAllKeys方法的典型用法代碼示例。如果您正苦於以下問題:PHP ParseObject::getAllKeys方法的具體用法?PHP ParseObject::getAllKeys怎麽用?PHP ParseObject::getAllKeys使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Parse\ParseObject
的用法示例。
在下文中一共展示了ParseObject::getAllKeys方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: 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;
}