Phar->count

(no version information, might be only in CVS)

Phar->count -- Returns the number of entries (files) in the Phar archive

Descrizione

int Phar->count ( void )

Elenco dei parametri

Valori restituiti

The number of files containd within this phar, or 0 (the number zero) if none.

Esempi

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