array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'globiterator.count.php', 1 => 'GlobIterator::count', 2 => 'Get the number of directories and files', ), 'up' => array ( 0 => 'class.globiterator.php', 1 => 'GlobIterator', ), 'prev' => array ( 0 => 'globiterator.construct.php', 1 => 'GlobIterator::__construct', ), 'next' => array ( 0 => 'class.infiniteiterator.php', 1 => 'InfiniteIterator', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/globiterator/count.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

GlobIterator::count

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

GlobIterator::countGet the number of directories and files

Descrizione

public GlobIterator::count(): int

Gets the number of directories and files found by the glob expression.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The number of returned directories and files, as an int.

Esempi

Example #1 GlobIterator::count() example

<?php
$iterator
= new GlobIterator('*.xml');

printf("Matched %d item(s)\r\n", $iterator->count());
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

Matched 8 item(s)

Vedere anche: