本文整理汇总了PHP中PHPExcel_Style_Color::getHashCode方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPExcel_Style_Color::getHashCode方法的具体用法?PHP PHPExcel_Style_Color::getHashCode怎么用?PHP PHPExcel_Style_Color::getHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPExcel_Style_Color
的用法示例。
在下文中一共展示了PHPExcel_Style_Color::getHashCode方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
if ($this->_isSupervisor) {
return $this->getSharedComponent()->getHashCode();
}
return md5($this->_borderStyle . $this->_color->getHashCode() . __CLASS__);
}
示例2: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5($this->_author . $this->_text->getHashCode() . $this->_width . $this->_height . $this->_marginLeft . $this->_marginTop . ($this->_visible ? 1 : 0) . $this->_fillColor->getHashCode() . __CLASS__);
}
示例3: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
if ($this->_isSupervisor) {
return $this->getSharedComponent()->getHashCode();
}
return md5($this->_name . $this->_size . ($this->_bold ? 't' : 'f') . ($this->_italic ? 't' : 'f') . ($this->_superScript ? 't' : 'f') . ($this->_subScript ? 't' : 'f') . $this->_underline . ($this->_strikethrough ? 't' : 'f') . $this->_color->getHashCode() . __CLASS__);
}
示例4: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5(($this->_visible ? 't' : 'f') . $this->_blurRadius . $this->_distance . $this->_direction . $this->_alignment . $this->_color->getHashCode() . $this->_alpha . __CLASS__);
}
示例5: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5($this->_borderStyle . $this->_borderColor->getHashCode() . __CLASS__);
}
示例6: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5($this->_fillType . $this->_rotation . $this->_startColor->getHashCode() . $this->_endColor->getHashCode() . __CLASS__);
}
示例7: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5($this->_name . $this->_size . ($this->_bold ? 't' : 'f') . ($this->_italic ? 't' : 'f') . $this->_underline . ($this->_striketrough ? 't' : 'f') . $this->_color->getHashCode() . __CLASS__);
}
示例8: getHashCode
/**
* Get hash code
*
* @return string Hash code
*/
public function getHashCode()
{
return md5($this->author . $this->text->getHashCode() . $this->width . $this->height . $this->marginLeft . $this->marginTop . ($this->visible ? 1 : 0) . $this->fillColor->getHashCode() . $this->alignment . __CLASS__);
}