Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

sizeof

Array-Funktionen

    Befehl:
int sizeof ( mixed $var )


    Parameter-Liste:
NameBeschreibung
varDas Array

    Beschreibung:
Die Funktion sizeof() zählt die Anzahl der Elemente eines Arrays und gibt das Ergebnis zurück.


    Aktiv in Version:
(PHP 4, PHP 5, PHP 7)

    Hinweis:
Hinweis:

Diese Funktion ist ein Alias für: count().


sizeof() - Beispiel:


Eingabe:
<?PHP
$array = array ( 'banane', 'birne', 'apfel' );

echo sizeof ( $array );
?>


Ausgabe:
3
sizeof() - Beispiel 2:


Eingabe:
<?PHP
$array = array("banane","birne","apfel");
for($x=0;$x<sizeof($array);$x++){
    echo $array[$x] . "<br>";
}
?>


Ausgabe:
banane
birne
apfel
Array-Funktionen