Новости | Документация | Download | Webboard | FAQ | Поиск | Контакты


DirectoryIterator::__construct

(PHP 5)

DirectoryIterator::__constructConstructs a new dir iterator from a path

Описание

DirectoryIterator::__construct ( string $path )

Constructs a new directory iterator from a path.

Список параметров

path

The path of the directory to traverse.

Примеры

Пример #1 A DirectoryIterator::__construct example

This example will list the contents of the directory containing the script.

<?php
$dir 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$dir as $fileinfo) {
    if (!
$fileinfo->isDot()) {
        
var_dump($fileinfo->getFilename());
    }
}
?>

Смотрите также






  Copyright Apache.ru © 1999-2017, All Rights Reserved Разработка сайта: Inside.ru  
  РЕКЛАМА НА САЙТЕ: |