|
QuickHashIntHash::getThis method retrieves a value from the hash by its key Description
public int QuickHashIntHash::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 QuickHashIntHash::get example
<?php The above example will output something similar to: bool(false) bool(true) int(1) bool(true) int(5) |