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


PHP Collection::current方法代码示例

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


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

示例1: testCurrent

 /**
  * @dataProvider provideCollection
  */
 public function testCurrent(Collection $coll, array $elements)
 {
     $this->assertSame(current($elements), $coll->current());
     next($elements);
     $coll->next();
     $this->assertSame(current($elements), $coll->current());
 }
开发者ID:malarzm,项目名称:collections,代码行数:10,代码来源:BaseTest.php

示例2: generateCells

 /**
  * Generates the cells.
  *
  * @param TableView $view
  */
 private function generateCells(TableView $view)
 {
     $sortDirs = [ColumnSort::ASC, ColumnSort::DESC];
     $columns = $this->config->getColumns();
     foreach ($columns as &$columnOptions) {
         $key = $columnOptions['full_name'] . '_sort';
         $sortDir = $this->requestHelper->getVar($key, ColumnSort::NONE);
         $columnOptions['sorted'] = in_array($sortDir, $sortDirs);
     }
     unset($columnOptions);
     $this->data->first();
     while ($this->data->current()) {
         $row = new Row($this->getCurrentRowData('id'));
         // TODO getCurrentRowKey() ?
         foreach ($columns as $columnOptions) {
             $cell = new Cell();
             $type = $this->factory->getColumnType($columnOptions['type']);
             $type->buildViewCell($cell, $this, $columnOptions);
             $row->cells[] = $cell;
         }
         $view->rows[] = $row;
         $this->data->next();
     }
 }
开发者ID:ekyna,项目名称:table,代码行数:29,代码来源:Table.php

示例3: current

 /**
  * Gets the element of the collection at the current iterator position.
  */
 public function current()
 {
     return $this->coll->current();
 }
开发者ID:dracony,项目名称:forked-php-orm-benchmark,代码行数:7,代码来源:PersistentCollection.php

示例4: current

 /**
  * {@inheritDoc}
  */
 public function current()
 {
     $this->initialize();
     return $this->collection->current();
 }
开发者ID:BozzaCoon,项目名称:SPHERE-Framework,代码行数:8,代码来源:AbstractLazyCollection.php

示例5: getNextUnit

 /**
  * @param Collection $units
  *
  * @return OrderItemUnitInterface
  */
 private function getNextUnit(Collection $units)
 {
     $unit = $units->current();
     if (null === $unit) {
         throw new \InvalidArgumentException('The number of tax items is greater than number of units.');
     }
     $units->next();
     return $unit;
 }
开发者ID:stevedien,项目名称:Sylius,代码行数:14,代码来源:OrderItemsTaxesByZoneApplicator.php

示例6: current

 /**
  * Gets the element of the collection at the current iterator position.
  *
  * @return mixed
  */
 function current()
 {
     $this->initialize();
     $current = $this->collection->current();
     return $current->getTerm();
 }
开发者ID:activelamp,项目名称:taxonomy,代码行数:11,代码来源:PluralVocabularyField.php

示例7: current

 /**
  * {@inheritdoc}
  */
 public function current()
 {
     return $this->inner->current();
 }
开发者ID:peterkrejci,项目名称:music-collection,代码行数:7,代码来源:ReadOnlyCollectionWrapper.php

示例8: getChildren

 public function getChildren()
 {
     return new RecursiveTaskIterator($this->_data->current()->getChildrenTask());
 }
开发者ID:niyazbekovbakyt,项目名称:estimations,代码行数:4,代码来源:RecursiveTaskIterator.php


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