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


PHP Generator::next方法代碼示例

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


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

示例1: pop

 /**
  * Fetch Next Token
  *
  * @return Token
  */
 public function pop()
 {
     if ($token = $this->peeked) {
         $this->peeked = null;
         return $token;
     }
     $token = $this->generator->current();
     $this->generator->next();
     return $token;
 }
開發者ID:KhaosLibrary,項目名稱:Console,代碼行數:15,代碼來源:Scanner.php

示例2: next

 public function next()
 {
     if ($this->_currentGen) {
         return $this->_currentGen->next();
     }
     return next($this->_records);
 }
開發者ID:Ekhvalov,項目名稱:recordsman,代碼行數:7,代碼來源:RecordSet.php

示例3: rewind

 /**
  * Rewind the Iterator to the first element
  * @see Iterator::rewind
  * @link http://php.net/manual/en/iterator.rewind.php
  */
 public function rewind()
 {
     $this->generateGenerator();
     if (is_callable($this->onRewind)) {
         call_user_func($this->onRewind);
     }
     if (defined('HHVM_VERSION')) {
         $this->generator->next();
     }
 }
開發者ID:JeroenDeDauw,項目名稱:RewindableGenerator,代碼行數:15,代碼來源:RewindableGenerator.php

示例4: read

 /**
  * {@inheritdoc}
  */
 public function read($length)
 {
     $this->initializeBeforeRead();
     if (!$this->generator->valid()) {
         return '';
     }
     if ($this->resource->eof()) {
         $this->generator->next();
         if (!$this->generator->valid()) {
             return '';
         }
         $this->resource = $this->generator->current();
         $this->resource->rewind();
     }
     return $this->resource->fread($length);
 }
開發者ID:genkgo,項目名稱:archive-stream,代碼行數:19,代碼來源:Psr7Stream.php

示例5: nextToken

 /**
  * Moves the generator on by one token.
  *
  * (It calls ->next() on the generator, look at the PHP doc)
  *
  * @see \Generator->next
  *
  * @return $this
  */
 protected function nextToken()
 {
     $this->tokens->next();
     return $this;
 }
開發者ID:TeaMeow,項目名稱:Avane,代碼行數:14,代碼來源:Parser.php

示例6: take

/**
 *
 * @param int $n
 * @param \Generator $gen
 *
 * @return \Generator
 */
function take($n, Generator $gen)
{
    while ($n-- > 0 && $gen->valid()) {
        (yield $gen->current());
        $gen->next();
    }
}
開發者ID:domynation,項目名稱:domynation-framework,代碼行數:14,代碼來源:functional.php

示例7: next

 public function next()
 {
     if (!$this->generator) {
         $this->rewind();
     }
     $this->generator->next();
 }
開發者ID:nikic,項目名稱:iter,代碼行數:7,代碼來源:iter.rewindable.php

示例8: cntGeneratorLogs

 /**
  * @param \Generator $logs
  *
  * @return int
  */
 protected function cntGeneratorLogs($logs)
 {
     $cnt = 0;
     while ($logs->valid()) {
         $cnt++;
         $logs->next();
     }
     return $cnt;
 }
開發者ID:warlock39,項目名稱:webserverlog,代碼行數:14,代碼來源:CollectorTest.php

示例9: next

 /**
  * Get next item
  */
 public function next()
 {
     if ($this->generator) {
         $this->generator->next();
     }
 }
開發者ID:xphere,項目名稱:lazzzy,代碼行數:9,代碼來源:CallableIterator.php


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