update : 2015.11.03
php.shukuma.com

검색:
 
 
This method retrieves a value from the hash by its key

QuickHashIntStringHash::get

(PECL quickhash >= Unknown)

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

설명

public mixed QuickHashIntStringHash::get ( int $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.

예제

Example #1 QuickHashIntStringHash::get() example

<?php
$hash 
= new QuickHashIntStringHash);
var_dump$hash->get) );

var_dump$hash->add2"two" ) );
var_dump$hash->get) );

var_dump$hash->add3) );
var_dump$hash->get) );
?>

위 예제의 출력 예시:

bool(false)
bool(true)
string(3) "two"
bool(true)
string(1) "5"