(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:
count() -
glob() -
Please login to continue.