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


PHP ArrayCollection::offsetExists方法代码示例

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


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

示例1: addAttribute

 /**
  * @return mixed
  */
 public function addAttribute($name, $value)
 {
     if (!$this->attributes->offsetExists($name)) {
         $this->attributes->set($name, $value);
     }
     return $this;
 }
开发者ID:nodepub,项目名称:core,代码行数:10,代码来源:Site.php

示例2: offsetExists

 public function offsetExists($offset)
 {
     if (null === $this->entries) {
         $this->__load___();
     }
     return $this->entries->offsetExists($offset);
 }
开发者ID:luisbrito,项目名称:Phraseanet,代码行数:7,代码来源:AggregateEntryCollection.php

示例3: testOffsetExists

 /**
  * Tests IdentityWrapper->offsetExists()
  */
 public function testOffsetExists()
 {
     foreach (array_keys($this->entries) as $key) {
         $this->assertTrue($this->identityWrapper->offsetExists($key));
         $this->assertFalse($this->wrappedCollection->offsetExists($key));
     }
     $this->assertFalse($this->identityWrapper->offsetExists('non-existent'));
 }
开发者ID:cross-solution,项目名称:yawik,代码行数:11,代码来源:IdentityWrapperTest.php

示例4: hasOxfordable

 /**
  * Test if there is a previous oxfordable word
  * available to the conjunction
  *
  * @param Conjunction $word
  * @return bool
  */
 private function hasOxfordable(Conjunction $word)
 {
     $index = $this->words->indexOf($word);
     return $this->words->offsetExists($index - 1);
 }
开发者ID:epfremmer,项目名称:PHP-Weekly-Issue28,代码行数:12,代码来源:Sentence.php

示例5: hasContentProvider

 /**
  * Check content provider availability by name.
  *
  * @param string $name
  * @return bool
  */
 public function hasContentProvider($name)
 {
     return $this->contentProviders->offsetExists($name);
 }
开发者ID:Maksold,项目名称:platform,代码行数:10,代码来源:ContentProviderManager.php

示例6: offsetExists

 /** {@inheritDoc} */
 public function offsetExists($offset)
 {
     $this->initialize();
     return $this->collection->offsetExists($offset);
 }
开发者ID:nikophil,项目名称:cmf-tests,代码行数:6,代码来源:PersistentCollection.php

示例7: offsetExists

 /**
  * (PHP 5 &gt;= 5.0.0)<br/>
  * Whether a offset exists
  * @link http://php.net/manual/en/arrayaccess.offsetexists.php
  *
  * @param mixed $offset <p>
  *                      An offset to check for.
  *                      </p>
  *
  * @return boolean true on success or false on failure.
  * </p>
  * <p>
  * The return value will be casted to boolean if non-boolean was returned.
  */
 public function offsetExists($offset)
 {
     return $this->collection->offsetExists($offset);
 }
开发者ID:Rybbow,项目名称:x-blog,代码行数:18,代码来源:ImmutableCollection.php

示例8: offsetExists

 public function offsetExists($offset)
 {
     return $this->fields->offsetExists($offset);
 }
开发者ID:tomaszhanc,项目名称:form-field-bundle,代码行数:4,代码来源:FieldCollection.php


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