微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用col&row索引的PHP Excel样式格式

我们可以在这样的单元格上应用样式

$objPHPExcel->getActiveSheet()->duplicateStyleArray($array_of_style,"A1:D1");

但我想将相同的样式应用于其列和行引用上的一系列单元格

(3,4,7,7); 

请帮帮我.我不是PHPexcel的新手,但找不到任何方法来应用col& amp;行索引.

解决方法:

function duplicateStyleArrayByColumnAndRow( PHPExcel $objPHPExcel, 
                                            $styleArray = array(), 
                                            $fromrow = 1, 
                                            $fromCol = 0, 
                                            $toRow = 1, 
                                            $toCol = 0
                                          )
{
    if ($fromrow > $toRow) {
        $r = $fromrow; $fromrow = $toRow; $toRow = $r;
    }
    if ($fromCol > $toCol) {
        $c = $fromCol; $fromCol = $toCol; $toCol = $c;
    }

    $fromCell = PHPExcel_Cell::stringFromColumnIndex($fromCol) . $fromrow;
    $toCell = PHPExcel_Cell::stringFromColumnIndex($toCol) . $toRow;

    $cellRange = $fromCell . ':' . $toCell;
    if ($fromCell === $toCell) {
        $cellRange = $fromCell;
    }

    return $objPHPExcel->getActiveSheet()->duplicateStyleArray($styleArray,$cellRange);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐