PHP aggregate iterator interface IteratorAggregate usage analysis,

Source: Internet
Author: User

PHP aggregate iterator interface IteratorAggregate usage analysis,

This article describes the usage of the PHP aggregate iterator interface IteratorAggregate. We will share this with you for your reference. The details are as follows:

PHP IteratorAggregate is also called an aggregate iterator. It provides an interface for creating an external iterator. The interface abstract is as follows:

IteratorAggregate extends Traversable {  abstract public Traversable getIterator ( void )}

When implementing the getIterator method, you must return an instance of classes that implement the Iterator interface.

Example:

<? Php/*** use the aggregate iterator, return an instance of the class implementing the Iterator interface ** @ author crazy old driver */class myData implements IteratorAggregate {public $ one = "Public property one "; public $ two = "Public property two"; public $ three = "Public property three"; public function _ construct () {$ this-> last = "last property ";} public function getIterator () {return new ArrayIterator ($ this) ;}}$ obj = new myData; foreach ($ obj as $ key =>$ value ) {Var_dump ($ key, $ value); echo '<br>'; // Linux: echo "\ n" ;}?>

Output of the preceding example:

string 'one' (length=3)string 'Public property one' (length=19)string 'two' (length=3)string 'Public property two' (length=19)string 'three' (length=5)string 'Public property three' (length=21)string 'last' (length=4)string 'last property' (length=13)

The ArrayIterator iterator encapsulates objects or arrays as a class that can be operated through foreach. For details, refer to the introduction of the SPL iterator. For more information, see http://www.bkjia.com/article/41074.htm.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.