我正在使用一个糟糕的 PDFLib 包装器,它无法处理 PDFLib 的单元格超过字符限制(每个单元格大约 1600 个字符)的问题。因此,我需要将一个大段落分成更小的字符串,这些字符串可以整齐地放入单元格中,不打断单词,并且尽可能靠近行尾。我完全不知道如何有效地做到这一点(我需要它在合理的时间内运行)
这是我的代码,它仅根据字符长度将块切割成子字符串,忽略我上面提到的单词和行要求:
SPE_* 函数是来自包装类的静态函数,SetNextCellStyle 调用用于在单元格的轮廓周围绘制一个框 BeginRow 是开始一行文本所必需的。EndRow 需要结束一行文本,必须在 BeginRow 之后调用,如果没有完全填满预设的列数,则会产生错误。AddCell 将字符串添加到第二个参数列数。
function SPE_divideText($string,$cols,$indent,$showBorders=false)
{
$strLim = 1500;
$index = 0;
$maxIndex = round((strlen($string) / 1500-.5));
$retArr= array();
while(substr($string, $strLim -1500,$strLim)!=FALSE)
{
$retArr[$index] = substr($string, $strLim -1500,$strLim);
$strLim+=1500;
SPE_BeginRow();
SPE_SetNextCellStyle('cell-padding', '0');
if($indent>0)
{
SPE_Empty($indent);
}
if($showBorders)
{
SPE_SetNextCellStyle('border-left','1.5');
SPE_SetNextCellStyle('border-right','1.5');
if($index == 0)
{
SPE_SetNextCellStyle('border-top','1.5');
}
if($index== $maxIndex)
{
SPE_SetNextCellStyle('border-bottom','1.5');
}
}
SPE_AddCell($retArr[$index],$cols-$indent);
SPE_EndRow();
$index++;
}
}
提前感谢您的帮助!