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


PHP ClassMetadata::getIdentifierValue方法代码示例

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


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

示例1: getId

 /** {@inheritdoc} */
 public function getId($object)
 {
     if (!is_a($object, $this->getClass())) {
         throw new MetadataException("Object isn't subclass of '{$this->getClass()}', given '" . (is_object($object) ? get_class($object) : gettype($object)) . "'.");
     }
     if ($this->classMetadata->isEmbeddedDocument) {
         throw new MetadataException("Embedded document '{$this->getClass()}' hasn't ID.");
     }
     $identifier = $this->classMetadata->getIdentifierValue($object);
     return empty($identifier) ? NULL : $identifier;
 }
开发者ID:mike227,项目名称:n-forms,代码行数:12,代码来源:ClassMetadata.php

示例2: scheduleForUpsert

 /**
  * Schedules a document for upsert into the database and adds it to the
  * identity map
  *
  * @param ClassMetadata $class
  * @param object $document The document to schedule for upsert.
  * @throws \InvalidArgumentException
  */
 public function scheduleForUpsert(ClassMetadata $class, $document)
 {
     $oid = spl_object_hash($document);
     if ($class->isEmbeddedDocument) {
         throw new \InvalidArgumentException("Embedded document can not be scheduled for upsert.");
     }
     if (isset($this->documentUpdates[$oid])) {
         throw new \InvalidArgumentException("Dirty document can not be scheduled for upsert.");
     }
     if (isset($this->documentDeletions[$oid])) {
         throw new \InvalidArgumentException("Removed document can not be scheduled for upsert.");
     }
     if (isset($this->documentUpserts[$oid])) {
         throw new \InvalidArgumentException("Document can not be scheduled for upsert twice.");
     }
     $this->documentUpserts[$oid] = $document;
     $this->documentIdentifiers[$oid] = $class->getIdentifierValue($document);
     $this->addToIdentityMap($document);
 }
开发者ID:kevinyien,项目名称:mongodb-odm,代码行数:27,代码来源:UnitOfWork.php


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