本文整理汇总了PHP中PHPExcel::getCellXfByHashCode方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPExcel::getCellXfByHashCode方法的具体用法?PHP PHPExcel::getCellXfByHashCode怎么用?PHP PHPExcel::getCellXfByHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPExcel
的用法示例。
在下文中一共展示了PHPExcel::getCellXfByHashCode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: duplicateStyle
/**
* Duplicate cell style to a range of cells
*
* Please note that this will overwrite existing cell styles for cells in range!
*
* @param PHPExcel_Style $pCellStyle Cell style to duplicate
* @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1")
* @throws PHPExcel_Exception
* @return PHPExcel_Worksheet
*/
public function duplicateStyle(PHPExcel_Style $pCellStyle = null, $pRange = '')
{
// make sure we have a real style and not supervisor
$style = $pCellStyle->getIsSupervisor() ? $pCellStyle->getSharedComponent() : $pCellStyle;
// Add the style to the workbook if necessary
$workbook = $this->_parent;
if ($existingStyle = $this->_parent->getCellXfByHashCode($pCellStyle->getHashCode())) {
// there is already such cell Xf in our collection
$xfIndex = $existingStyle->getIndex();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf($pCellStyle);
$xfIndex = $pCellStyle->getIndex();
}
// Calculate range outer borders
list($rangeStart, $rangeEnd) = PHPExcel_Cell::rangeBoundaries($pRange . ':' . $pRange);
// Make sure we can loop upwards on rows and columns
if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) {
$tmp = $rangeStart;
$rangeStart = $rangeEnd;
$rangeEnd = $tmp;
}
// Loop through cells and apply styles
for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; ++$col) {
for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; ++$row) {
$this->getCell(PHPExcel_Cell::stringFromColumnIndex($col - 1) . $row)->setXfIndex($xfIndex);
}
}
return $this;
}
示例2: duplicateStyle
/**
* Duplicate cell style to a range of cells
*
* Please note that this will overwrite existing cell styles for cells in
* range!
*
* @param PHPExcel_Style $pCellStyle
* to duplicate
* @param string $pRange
* cells (i.e. "A1:B10"), or just one cell (i.e. "A1")
* @throws Exception
* @return PHPExcel_Worksheet
*/
public function duplicateStyle(PHPExcel_Style $pCellStyle = null, $pRange = '') {
// make sure we have a real style and not supervisor
$style = $pCellStyle->getIsSupervisor () ? $pCellStyle->getSharedComponent () : $pCellStyle;
// Add the style to the workbook if necessary
$workbook = $this->_parent;
if ($existingStyle = $this->_parent->getCellXfByHashCode ( $pCellStyle->getHashCode () )) {
// there is already such cell Xf in our collection
$xfIndex = $existingStyle->getIndex ();
} else {
// we don't have such a cell Xf, need to add
$workbook->addCellXf ( $pCellStyle );
$xfIndex = $pCellStyle->getIndex ();
}
// Uppercase coordinate
$pRange = strtoupper ( $pRange );
// Is it a cell range or a single cell?
$rangeA = '';
$rangeB = '';
if (strpos ( $pRange, ':' ) === false) {
$rangeA = $pRange;
$rangeB = $pRange;
} else {
list ( $rangeA, $rangeB ) = explode ( ':', $pRange );
}
// Calculate range outer borders
$rangeStart = PHPExcel_Cell::coordinateFromString ( $rangeA );
$rangeEnd = PHPExcel_Cell::coordinateFromString ( $rangeB );
// Translate column into index
$rangeStart [0] = PHPExcel_Cell::columnIndexFromString ( $rangeStart [0] ) - 1;
$rangeEnd [0] = PHPExcel_Cell::columnIndexFromString ( $rangeEnd [0] ) - 1;
// Make sure we can loop upwards on rows and columns
if ($rangeStart [0] > $rangeEnd [0] && $rangeStart [1] > $rangeEnd [1]) {
$tmp = $rangeStart;
$rangeStart = $rangeEnd;
$rangeEnd = $tmp;
}
// Loop through cells and apply styles
for($col = $rangeStart [0]; $col <= $rangeEnd [0]; ++ $col) {
for($row = $rangeStart [1]; $row <= $rangeEnd [1]; ++ $row) {
$this->getCell ( PHPExcel_Cell::stringFromColumnIndex ( $col ) . $row )->setXfIndex ( $xfIndex );
}
}
return $this;
}