当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPExcel_Style_Color::getHashCode方法代码示例

本文整理汇总了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__);
 }
开发者ID:hoanglannet,项目名称:copar,代码行数:12,代码来源:Border.php

示例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__);
 }
开发者ID:kaantunc,项目名称:MYK-BOR,代码行数:9,代码来源:Comment.php

示例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__);
 }
开发者ID:davidmottet,项目名称:automne,代码行数:12,代码来源:Font.php

示例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__);
 }
开发者ID:lihuafeng,项目名称:wstmall,代码行数:9,代码来源:Shadow.php

示例5: getHashCode

 /**
  * Get hash code
  *
  * @return string	Hash code
  */
 public function getHashCode()
 {
     return md5($this->_borderStyle . $this->_borderColor->getHashCode() . __CLASS__);
 }
开发者ID:hostellerie,项目名称:nexpro,代码行数:9,代码来源:Border.php

示例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__);
 }
开发者ID:laiello,项目名称:myopensources,代码行数:9,代码来源:Fill.php

示例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__);
 }
开发者ID:laiello,项目名称:myopensources,代码行数:9,代码来源:Font.php

示例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__);
 }
开发者ID:oalkhanishvili,项目名称:track2,代码行数:9,代码来源:Comment.php


注:本文中的PHPExcel_Style_Color::getHashCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。