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


PHP Reader::getLine方法代码示例

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


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

示例1: testReader

    public function testReader()
    {
        $text = <<<HTML
HELLO WORLD
HTML;
        $reader = new Reader($text);
        $this->assertEquals(strlen($text), strlen(trim($text)));
        $this->assertEquals("HE", $reader->read(2));
        $this->assertEquals(strlen($text), $reader->length());
        $this->assertEquals(6, $reader->moveCursor(6)->getCursor());
        $this->assertEquals('WORLD', $reader->readToEnd());
        $this->assertEquals('HELLO WORLD', $reader->rewind()->readToEnd());
        $this->assertEquals('HELLO ', $reader->readAndGo(6));
        $this->assertEquals('WORLD', $reader->readToEnd());
        # Reset position
        $reader->rewind();
        $this->assertNotFalse($reader->match('/(?=[a-z])/iA'));
        $this->assertEquals('HELLO', $reader->match('/\\w+/A'));
        $this->assertEquals(0, $reader->getCursor());
        $this->assertFalse($reader->matchAndGo('/\\d+/A'));
        $this->assertEquals('HELLO', $reader->matchAndGo('/\\w+/A'));
        $this->assertEquals(' ', $reader->matchAndGo('/\\s+/A'));
        $this->assertEquals('WORLD', $reader->matchAndGo('/\\w+/A'));
        $this->assertTrue($reader->isEnd());
        $reader->rewind();
        $this->assertEquals('HELLO WORLD', $reader->readToEndAndGo());
        $this->assertEquals(11, $reader->length());
        $this->assertEquals(10, $reader->getCursor());
        $this->assertTrue($reader->isEnd());
        $reader = new Reader('
		Hello
		World
		');
        $reader->setCursor(strpos($reader->readAll(), 'World'));
        $this->assertEquals(3, $reader->getLine());
        $this->assertEquals(2, $reader->getColumn());
    }
开发者ID:mdzzohrabi,项目名称:azera-fry,代码行数:37,代码来源:ReaderTest.php

示例2: getLine

 /**
  * Read and return the next line from the file.
  *
  * @param int $mode (SKIP_EMPTY_LINES or RETURN_EVERY_LINE which is the default)
  * @return array|null the data from next line of the file or null if there are no more lines.
  */
 public function getLine($mode = self::RETURN_EVERY_LINE)
 {
     $line = parent::getLine($mode);
     if ($line === null) {
         return null;
     }
     $parsed = str_getcsv($line, $this->delimiter, $this->enclosure, $this->escape);
     if ($mode === self::SKIP_EMPTY_LINES && self::isEmpty($parsed)) {
         return $this->getLine($mode);
     }
     return $parsed;
 }
开发者ID:fiedsch,项目名称:datamanagement,代码行数:18,代码来源:CsvReader.php


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