downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

RecursiveDirectoryIterator::getChildren> <RecursiveDirectoryIterator
Last updated: Fri, 06 Nov 2009

view this page in

RecursiveDirectoryIterator::__construct

(PHP 5 >= 5.1.2)

RecursiveDirectoryIterator::__constructConstructs a RecursiveDirectoryIterator

Description

RecursiveDirectoryIterator::__construct ( string $path [, string $flags ] )

Constructs a RecursiveDirectoryIterator.

Warning

This function is currently not documented; only its argument list is available.

Parameters

path

Directory path.

flags

Optional flags.

Return Values

No value is returned.

Examples

Example #1 RecursiveDirectoryIterator example

<?php

$directory 
'/tmp';

$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));

while(
$it->valid()) {

    if (!
$it->isDot()) {
        echo 
'SubPathName: ' $it->getSubPathName() . "\n";
        echo 
'SubPath:     ' $it->getSubPath() . "\n";
        echo 
'Key:         ' $it->key() . "\n\n";
    }

    
$it->next();
}

?>

The above example will output something similar to:

SubPathName: fruit/apple.xml
SubPath:     fruit
Key:         /tmp/fruit/apple.xml

SubPathName: stuff.xml
SubPath:     
Key:         /tmp/stuff.xml

SubPathName: veggies/carrot.xml
SubPath:     veggies
Key:         /tmp/veggies/carrot.xml

See Also



add a note add a note User Contributed Notes
RecursiveDirectoryIterator::__construct
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites