(没有版本信息可用,可能仅在 Git 中)
QuickHashStringIntHash::getSize — 返回散列中的元素数量
此函数没有参数。
散列中的元素数量。
示例 #1 QuickHashStringIntHash::getSize() 示例
<?php
$hash = new QuickHashStringIntHash( 8 );
var_dump( $hash->add( "two", 2 ) );
var_dump( $hash->add( "three", 5 ) );
var_dump( $hash->getSize() );
?>
以上示例将输出类似以下内容
bool(true) bool(true) int(2)