EmptyIterator 类

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

简介

EmptyIterator 类用于表示空迭代器。

类概要

class EmptyIterator implements Iterator {
/* 方法 */
public current(): never
public key(): never
public next(): void
public rewind(): void
public valid(): false
}

目录

添加注释

用户贡献的注释 1 个注释

Ben
7 年前
示例用例

<?php
class MyIterator implements IteratorAggregate
{
/**
* @var string
*/
private $url;

/**
* MyIterator 构造函数。
* @param $url
*/
public function __construct($url)
{
$this->url = $url;
}

/**
* @inheritDoc
*/
public function getIterator()
{
$content = file_get_contents($this->url);
try {
return @new
SimpleXMLIterator($content);

} catch (
Exception $e) { // 如果 $content 不是有效的 XML,但您并不在意
return new EmptyIterator();
}
}

}
?>
To Top