PHP Doku:: Get the number of public properties in the ArrayObject - arrayobject.count.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)Verschiedene Klassen und InterfacesThe ArrayObject classArrayObject::count

Ein Service von Reinhard Neidl - Webprogrammierung.

The ArrayObject class

<<ArrayObject::__construct

ArrayObject::exchangeArray>>

ArrayObject::count

(PHP 5 >= 5.0.0)

ArrayObject::countGet the number of public properties in the ArrayObject

Beschreibung

int ArrayObject::count ( void )

Get the number of public properties in the ArrayObject.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The number of public properties in the ArrayObject.

Hinweis:

When the ArrayObject is constructed from an array all properties are public.

Beispiele

Beispiel #1 ArrayObject::count() example

<?php
class Example {
    public 
$public 'prop:public';
    private 
$prv   'prop:private';
    protected 
$prt 'prop:protected';
}

$arrayobj = new ArrayObject(new Example());
var_dump($arrayobj->count());

$arrayobj = new ArrayObject(array('first','second','third'));
var_dump($arrayobj->count());
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

int(1)
int(3)


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



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",...)