ArrayObject::count

(PHP 5)

ArrayObject::count — Get the number of elements in the Iterator

Описание

int ArrayObject::count ( void )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Список параметров

This function has no parameters.

Возвращаемые значения

The number of elements in the Iterator.

Коментарии

<?php
$array_object 
= new \ArrayObject([]);
echo 
count($array_object); // echos 1 ?!?
echo count($this->getArrayCopy()); // echos the correct answer, 0
?>

Make it make sense. I've spent a few hours trying to figure out why simple tests were failing and had to look this up to figure this out.
2024-03-28 16:01:08
http://php5.kiev.ua/manual/ru/arrayobject.count.html

    Поддержать сайт на родительском проекте КГБ