(no version information, might be only in CVS)
The number of files containd within this phar, or 0 (the number zero) if none.
Esempio 1. A Phar->count() example
<?php// make sure it doesn't exist@unlink('brandnewphar.phar');try { $p = new Phar('brandnewphar.phar');} catch (Exception $e) { echo 'Could not create phar:', $e;}echo 'The new phar has ' . $p->count() . " entries\n";$p['file.txt'] = 'hi';echo 'The new phar has ' . $p->count() . " entries\n";?>
Il precedente esempio visualizzerà:
The new phar has 0 entries The new phar has 1 entries