gpt4 book ai didi

php - 在 PHPExcel 中设置自动高度不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:50 26 4
gpt4 key购买 nike

我正在使用 PHPExcel 生成 Excel。

所有代码工作正常。但自动高度代码不工作。

我试过下面的代码。

在特定行上应用行高

$objPHPExcel->getActiveSheet()->getRowDimension('7')->setRowHeight(-1); 

对所有行应用行高

$objPHPExcel->getActiveSheet()->getDefaultRowDimension(1)->setRowHeight(-1);

我也试过用它来换行。

$objPHPExcel->getActiveSheet()
->getStyle('B7')
->getAlignment()
->setWrapText(true);

但它给我的结果如下:

enter image description here

Note : Working in MS office,Not Working in Apache open Office and LibreOffice

最佳答案

刚刚将以下内容添加到 01simple.php 示例中

$value = "To be or not to be-that is the question: whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune, or to take arms against a sea of troubles, and, by opposing, end them."; 
$objPHPExcel->getActiveSheet()->setCellValue('A12', $value);
$objPHPExcel->getActiveSheet()->getRowDimension(12)->setRowHeight(-1);
$objPHPExcel->getActiveSheet()->getStyle('A12')->getAlignment()->setWrapText(true);

这会为 Excel2007 和 Excel5 Writers 创建正确包装的输出

关于php - 在 PHPExcel 中设置自动高度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39327993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com