QuickHashStringIntHash
PHP Manual

QuickHashStringIntHash::get

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

QuickHashStringIntHash::getThis method retrieves a value from the hash by its key

説明

public mixed QuickHashStringIntHash::get ( string $key )

This method retrieves a value from the hash by its key.

パラメータ

key

The key of the entry to add.

返り値

The value if the key exists, or NULL if the key wasn't part of the hash.

例1 QuickHashStringIntHash::get() example

<?php
$hash 
= new QuickHashStringIntHash);
var_dump$hash->get"one" ) );

var_dump$hash->add"two") );
var_dump$hash->get"two" ) );
?>

上の例の出力は、 たとえば以下のようになります。

bool(false)
bool(true)
int(2)


QuickHashStringIntHash
PHP Manual