(PECL ds >= 1.0.0)
Ds\Map::capacity — Returns the current capacity.
Returns the current capacity.
Cette fonction ne contient aucun paramètre.
The current capacity.
Exemple #1 Ds\Map::capacity() example
<?php
$map = new \Ds\Map();
var_dump($map->capacity());
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
int(16)