PHP Conference Japan 2024

QuickHashStringIntHash::get

(无版本信息可用,可能仅在 Git 中)

QuickHashStringIntHash::get此方法通过其键检索哈希中的值

描述

public QuickHashStringIntHash::get(string $key): mixed

此方法通过其键检索哈希中的值。

参数

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)

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top