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


DirectoryIterator::isDot

(PHP 5.1.0)

DirectoryIterator::isDotReturns true if current entry is '.' or '..'

Описание

bool DirectoryIterator::isDot ( void )

Check whether the current entry is a directory and either . or ...

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

This function has no parameters.

Возвращаемые значения

TRUE if the entry is . or .., otherwise FALSE

Примеры

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

This example will list all files, omitting the . and .. entries.

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






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