You are here

public function PHPExcel_HashTable::getByHashCode in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.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;
}