我正在尝试读取一个excel文件并将其呈现为html表。我想获得在excel中应用于单元格的样式,并将其呈现在html中。例如,有些单元格可能有粗体文本,我如何获得这些信息并以最有效的方式使用它?
这是我到目前为止的代码(我第一次尝试PHPExcel,所以我很想听到我能对此做出的任何评论或改进):
if ($_GET["xls"]) {
require_once("classes/PHPExcel.php");
$objPHPExcel = PHPExcel_IOFactory::load( dirname(__FILE__) . "/demo.xls" );
$sheetData = $objPHPExcel->getSheetByName('Sheet1')->toArray(null,true,true,true);
?>
<?php if ( count($sheetData) < 0) : ?>
<table class="table striped">
<?php foreach( $sheetData as $y => $row ) : ?>
<tr>
<?php foreach ( $row as $x => $cell) : ?>
<?php if ( $x === "A" ) : ?>
<th><?php echo $cell; ?></th>
<?php else : ?>
<td><?php echo $cell; ?></td>
<?php endif; ?>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<?php
}
为什么不看看PHPExcel现有的HTML编写器:它已经处理合并单元格、单元格格式(包括边框)、字体样式等。
似乎以下代码有效:
$objPHPExcel->getSheetByName('Sheet1')->getStyle("B13")->getFont()->getBold()