Threaded::count

(PECL pthreads >= 2.0.0)

Threaded::countManipulation

Описание

public integer Threaded::count ( void )

Returns the number of properties for this object

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

У этой функции нет параметров.

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

Примеры

Пример #1 Counting the properties of an object

<?php
$safe 
= new Threaded();

while (
count($safe) < 10) {
    
$safe[] = count($safe);
}

var_dump(count($safe));
?>

Результат выполнения данного примера:

int(10)

Коментарии

I think in the example it was meant to be
$safe->count()
instead of 
count($safe)
2014-11-25 15:34:32
http://php5.kiev.ua/manual/ru/threaded.count.html

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