如何将中断添加到php中excel中用作列标题的数据中。我有从PHP的excel表,我必须在列中添加标题。我能够做到这一点,但问题是数据更多,我需要它作为一行后,我们如何使用PHP在excel表中打破它。
有人可以帮助我,谢谢。
$this->excel->getActiveSheet()->setCellValue('A2', 'a.Please include the legends in the bottom of the table, like in the online version:<br>
f – Based on "Actual Final Budget or Actual Spending"
a – Based on "Actual Spending"
p – Based on "Provisional Budget"
');
这是标题,目前只能将数据提升到f。
有人帮助我。
答案 0 :(得分:1)
使用&#34; \ n&#34;字符而不是html break标记:PHPExcel使用MS Excel格式,而不是HTML标记。
您可能还想将单元格设置为自动换行,并将行设置为自动调整
答案 1 :(得分:0)
在每个语句后添加分号
答案 2 :(得分:0)
$str = 'a.Please include the legends in the bottom of the table, like in the online version:'."\r\n";
$str .= 'f – Based on "Actual Final Budget or Actual Spending"'."\r\n";
$str .= 'a – Based on "Actual Spending"'."\r\n";
$str .= 'p – Based on "Provisional Budget"'."\r\n";
$this->excel->getActiveSheet()->setCellValue('A2', $str);
尝试这个,应该可以。