(无版本信息可用,可能仅在 Git 中)
QuickHashStringIntHash::get — 此方法通过其键检索哈希中的值
key
要检索的条目的键。
如果键存在则为该值,如果键不是哈希的一部分则为null
。
示例 #1 QuickHashStringIntHash::get() 示例
<?php
$hash = new QuickHashStringIntHash( 8 );
var_dump( $hash->get( "one" ) );
var_dump( $hash->add( "two", 2 ) );
var_dump( $hash->get( "two" ) );
?>
以上示例将输出类似以下内容
bool(false) bool(true) int(2)