pht\HashTable::size

(PECL pht >= 0.0.1)

pht\HashTable::sizeGets the size of the hash table

Описание

public pht\HashTable::size ( ) : int

Returns the current size of the hash table. This operation requires a pht\HashTable's mutex lock to be held if it is being used by multiple threads.

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

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

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

The size of the hash table.

Примеры

Пример #1 Getting a hash table's size

<?php

use pht\HashTable;

$hashTable = new HashTable();

$hashTable['a'] = 1;
$hashTable['b'] = 2;

var_dump($hashTable->size());

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

int(2)