public function PHPExcel_RichText_TextElement::getHashCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php \PHPExcel_RichText_TextElement::getHashCode()
* Get hash code * *
Return value
string Hash code
Overrides PHPExcel_RichText_ITextElement::getHashCode
1 method overrides PHPExcel_RichText_TextElement::getHashCode()
- PHPExcel_RichText_Run::getHashCode in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ RichText/ Run.php - * Get hash code * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ RichText/ TextElement.php, line 88
Class
- PHPExcel_RichText_TextElement
- PHPExcel_RichText_TextElement
Code
public function getHashCode() {
return md5($this->_text . __CLASS__);
}