Re: [請益] phpexcel套表問題

作者: xdraculax (首席怪叔叔)   2016-01-30 11:53:05
貼上格式
$sheet->duplicateStyle($style,$cell);
只能貼上單一個格式,不能像 Excel 貼上一個區塊
一般的有標題表格範例
$rows = array(
array(1, '張三', 63750, '1960-08-24'),
array(2, '李四', 42100, '1989-12-07'),
array(3, '王五', -500, '2003-06-13')
);
$sheet->fromArray($rows,NULL,'A2',TRUE);
$y_end = count($rows)+1;
$x_end = count($rows[0]);
for($x=1; $x <= $x_end; $x++){
// 欄數字轉文字, 如 0 → A, 1 → B
$col = PHPExcel_Cell::stringFromColumnIndex($x - 1);
$style = $sheet->getStyle("{$col}2");
// 整欄貼上格式
$sheet->duplicateStyle($style, "{$col}3:{$col}{$y_end}");
}
自己改成你的需求吧,應該要一格一格貼了
作者: joedenkidd (優質的藍色射手)   2016-01-30 12:21:00
感謝...了解了

Links booklink

Contact Us: admin [ a t ] ucptt.com