PHP Doku:: Gets the size of the array - splfixedarray.getsize.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)DatenstrukturenThe SplFixedArray classSplFixedArray::getSize

Ein Service von Reinhard Neidl - Webprogrammierung.

The SplFixedArray class

<<SplFixedArray::fromArray

SplFixedArray::key>>

SplFixedArray::getSize

(PHP 5 >= 5.3.0)

SplFixedArray::getSizeGets the size of the array

Beschreibung

public int SplFixedArray::getSize ( void )

Gets the size of the array.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the size of the array, as an integer.

Beispiele

Beispiel #1 SplFixedArray::getSize() example

<?php
   $array 
= new SplFixedArray(5);
   echo 
$array->getSize()."\n";
   
$array->setSize(10);
   echo 
$array->getSize()."\n";
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

5
10


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
c dot 1 at smithies dot org
22.11.2010 2:38
This function is currently a synonym for count().



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)