QuickHashStringIntHash::get

(No version information available, might only be in Git)
This 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.

Parameters:
key

The key of the entry to add.

Returns:

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

Examples:
QuickHashStringIntHash::get() example
<?php
$hash = new QuickHashStringIntHash( 8 );
var_dump( $hash->get( "one" ) );

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

The above example will output something similar to:

bool(false)
bool(true)
int(2)
doc_php
2016-02-24 16:13:12
Comments
Leave a Comment

Please login to continue.