GlobIterator::count

(PHP 5 >= 5.3.0, PHP 7)
Get the number of directories and files
public int GlobIterator::count ( void )

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

Returns:

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

Examples:
GlobIterator::count() example
<?php
$iterator = new GlobIterator('*.xml');

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

The above example will output something similar to:

Matched 8 item(s)
See also:

GlobIterator::__construct() -

count() -

glob() -

doc_php
2016-02-24 16:19:54
Comments
Leave a Comment

Please login to continue.