|
QuickHashIntStringHash::getThis method retrieves a value from the hash by its key Description
public mixed QuickHashIntStringHash::get
( int
$key
)This method retrieves a value from the hash by its key. Parameters
Return Values
The value if the key exists, or Examples
Example #1 QuickHashIntStringHash::get example
<?php The above example will output something similar to: bool(false) bool(true) string(3) "two" bool(true) string(1) "5" |