The EmptyIterator class

(PHP 5 >= 5.1.0, PHP 7)

소개

The EmptyIterator class for an empty iterator.

클래스 개요

EmptyIterator implements Iterator {
/* 메소드 */
public mixed current ( void )
public scalar key ( void )
public void next ( void )
public void rewind ( void )
public bool valid ( void )
}

Table of Contents

add a note add a note

User Contributed Notes 1 note

up
7
Ben
6 years ago
Example use case:

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

   
/**
     * MyIterator constructor.
     * @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) { // Case $content is not valid XML, but you don't care
           
return new EmptyIterator();
        }
    }

}
?>
To Top