public function PHPExcel_Cell_Hyperlink::getHashCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php \PHPExcel_Cell_Hyperlink::getHashCode()
Get hash code
Return value
string Hash code
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Cell/ Hyperlink.php, line 119
Class
- PHPExcel_Cell_Hyperlink
- PHPExcel_Cell_Hyperlink
Code
public function getHashCode() {
return md5($this->_url . $this->_tooltip . __CLASS__);
}