public function PHPExcel_HashTable::getByHashCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php \PHPExcel_HashTable::getByHashCode()
* Get by hashcode * *
Parameters
string $pHashCode: * @return PHPExcel_IComparable *
1 call to PHPExcel_HashTable::getByHashCode()
- PHPExcel_HashTable::getByIndex in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ HashTable.php - * Get by index * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ HashTable.php, line 174
Class
- PHPExcel_HashTable
- PHPExcel_HashTable
Code
public function getByHashCode($pHashCode = '') {
if (isset($this->_items[$pHashCode])) {
return $this->_items[$pHashCode];
}
return null;
}