本文整理汇总了PHP中Doctrine\ORM\UnitOfWork::flattenIdentifier方法的典型用法代码示例。如果您正苦于以下问题:PHP UnitOfWork::flattenIdentifier方法的具体用法?PHP UnitOfWork::flattenIdentifier怎么用?PHP UnitOfWork::flattenIdentifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Doctrine\ORM\UnitOfWork
的用法示例。
在下文中一共展示了UnitOfWork::flattenIdentifier方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getReference
/**
* {@inheritDoc}
*/
public function getReference($entityName, $id)
{
$class = $this->metadataFactory->getMetadataFor(ltrim($entityName, '\\'));
if (!is_array($id)) {
$id = array($class->identifier[0] => $id);
}
$sortedId = array();
foreach ($class->identifier as $identifier) {
if (!isset($id[$identifier])) {
throw ORMException::missingIdentifierField($class->name, $identifier);
}
$sortedId[$identifier] = $id[$identifier];
unset($id[$identifier]);
}
if ($id) {
throw ORMException::unrecognizedIdentifierFields($class->name, array_keys($id));
}
// Check identity map first, if its already in there just return it.
$flattenedId = $this->unitOfWork->flattenIdentifier($class, $sortedId);
if (($entity = $this->unitOfWork->tryGetById($flattenedId, $class->rootEntityName)) !== false) {
return $entity instanceof $class->name ? $entity : null;
}
if ($class->subClasses) {
return $this->find($entityName, $sortedId);
}
$entity = $this->proxyFactory->getProxy($class->name, $flattenedId);
$this->unitOfWork->registerManaged($entity, $flattenedId, array());
return $entity;
}