array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'phar.count.php', 1 => 'Phar::count', 2 => 'Returns the number of entries (files) in the Phar archive', ), 'up' => array ( 0 => 'class.phar.php', 1 => 'Phar', ), 'prev' => array ( 0 => 'phar.copy.php', 1 => 'Phar::copy', ), 'next' => array ( 0 => 'phar.createdefaultstub.php', 1 => 'Phar::createDefaultStub', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/phar/Phar/count.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Phar::count

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)

Phar::countReturns the number of entries (files) in the Phar archive

Beschreibung

public Phar::count(int $mode = COUNT_NORMAL): int

Parameter-Liste

mode

mode is an integer value specifying the counting mode to be used. By default, it is set to COUNT_NORMAL, which counts only the number of items in the archive that have not been deleted or hidden. When set to COUNT_RECURSIVE, it counts all items in the archive, including those that have been deleted or hidden.

Rückgabewerte

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

Beispiele

Beispiel #1 A Phar::count() example

<?php
// make sure it doesn't exist
@unlink('brandnewphar.phar');
try {
$p = new Phar(dirname(__FILE__) . '/brandnewphar.phar', 0, '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";
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

The new phar has 0 entries
The new phar has 1 entries