public function PHPExcel_HashTable::getIndexForHashCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php \PHPExcel_HashTable::getIndexForHashCode()
* Get index for hash code * *
Parameters
string $pHashCode: * @return int Index
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ HashTable.php, line 148
Class
- PHPExcel_HashTable
- PHPExcel_HashTable
Code
public function getIndexForHashCode($pHashCode = '') {
return array_search($pHashCode, $this->_keyMap);
}