(无版本信息可用,可能仅存在于 Git 中)
QuickHashStringIntHash::get — 此方法通过其键从哈希中检索值
键
要检索的条目的键。
如果键存在,则为该值,如果键不是哈希的一部分,则为 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)