當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Collection::last方法代碼示例

本文整理匯總了PHP中Doctrine\Common\Collections\Collection::last方法的典型用法代碼示例。如果您正苦於以下問題:PHP Collection::last方法的具體用法?PHP Collection::last怎麽用?PHP Collection::last使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine\Common\Collections\Collection的用法示例。


在下文中一共展示了Collection::last方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testFirstAndLast

 public function testFirstAndLast()
 {
     $this->_coll->add('one');
     $this->_coll->add('two');
     $this->assertEquals($this->_coll->first(), 'one');
     $this->assertEquals($this->_coll->last(), 'two');
 }
開發者ID:TuxCoffeeCorner,項目名稱:tcc,代碼行數:7,代碼來源:CollectionTest.php

示例2: last

 /** {@inheritdoc} */
 public function last()
 {
     $this->initialize();
     return $this->coll->last();
 }
開發者ID:dracony,項目名稱:forked-php-orm-benchmark,代碼行數:6,代碼來源:PersistentCollection.php

示例3: getRebalancerAction

 public function getRebalancerAction()
 {
     return $this->rebalancerActions->last();
 }
開發者ID:junjinZ,項目名稱:wealthbot,代碼行數:4,代碼來源:ClientAccountValue.php

示例4: getLastChild

 /**
  * {@inheritdoc}
  */
 public function getLastChild()
 {
     return $this->children->last();
 }
開發者ID:superdesk,項目名稱:web-publisher,代碼行數:7,代碼來源:MenuItem.php

示例5: isIncreasing

 /**
  * @param Collection $orderedByIndex
  * @return bool
  */
 protected function isIncreasing(Collection $orderedByIndex)
 {
     return is_null($orderedByIndex->first()->getMinValue()) && is_null($orderedByIndex->last()->getMaxValue());
 }
開發者ID:antrampa,項目名稱:crm,代碼行數:8,代碼來源:CategoriesValidator.php

示例6: last

 /**
  * Sets the internal iterator to the last element in the collection and returns this element.
  *
  * @return mixed
  */
 function last()
 {
     $this->initialize();
     $last = $this->collection->last();
     return $last->getTerm();
 }
開發者ID:activelamp,項目名稱:taxonomy,代碼行數:11,代碼來源:PluralVocabularyField.php

示例7: last

 /**
  * {@inheritdoc}
  */
 public function last()
 {
     return $this->inner->last();
 }
開發者ID:peterkrejci,項目名稱:music-collection,代碼行數:7,代碼來源:ReadOnlyCollectionWrapper.php

示例8: getLastOrder

 /**
  * getLastOrder
  *
  * @return \POS\Model\Entity\OrderInterface|null
  */
 public function getLastOrder()
 {
     return $this->orders->last();
 }
開發者ID:Blackhawkso,項目名稱:pos,代碼行數:9,代碼來源:Table.php

示例9: last

 /**
  * {@inheritDoc}
  */
 public function last()
 {
     return $this->collection->last();
 }
開發者ID:cross-solution,項目名稱:yawik,代碼行數:7,代碼來源:IdentityWrapper.php

示例10: testLast

 /**
  * @dataProvider provideCollection
  */
 public function testLast(Collection $coll, array $elements)
 {
     $this->assertSame(end($elements), $coll->last());
 }
開發者ID:malarzm,項目名稱:collections,代碼行數:7,代碼來源:BaseTest.php

示例11: getLatestScoreDetails

 public function getLatestScoreDetails()
 {
     return $this->scores->last();
 }
開發者ID:KnpLabs,項目名稱:KnpBundles,代碼行數:4,代碼來源:Bundle.php


注:本文中的Doctrine\Common\Collections\Collection::last方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。