ArrayObject::count
(PHP 5, PHP 7, PHP 8)
ArrayObject::count — ArrayObject の public プロパティの数を取得する
パラメータ
この関数にはパラメータはありません。
例
例1 ArrayObject::count() の例
<?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());
?>
上の例の出力は以下となります。
int(1) int(3)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google