博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
word输出
阅读量:5209 次
发布时间:2019-06-14

本文共 1632 字,大约阅读时间需要 5 分钟。

createSection();// Define table style arrays$styleTable = array('borderSize'=>6, 'borderColor'=>'006699', 'cellMargin'=>80);$styleFirstRow = array('borderBottomSize'=>18, 'borderBottomColor'=>'0000FF', 'bgColor'=>'66BBFF');// Define cell style arrays$styleCell = array('valign'=>'center');$styleCellBTLR = array('valign'=>'center', 'textDirection'=>PHPWord_Style_Cell::TEXT_DIR_BTLR);// Define font style for first row$fontStyle = array('bold'=>true, 'align'=>'center');// Add table style$PHPWord->addTableStyle('myOwnTableStyle', $styleTable, $styleFirstRow);// Add table$table = $section->addTable('myOwnTableStyle');// Add row$table->addRow(900);// Add cells$table->addCell(2000, $styleCell)->addText('Row 1', $fontStyle);$table->addCell(2000, $styleCell)->addText('Row 2', $fontStyle);$table->addCell(2000, $styleCell)->addText('Row 3', $fontStyle);$table->addCell(2000, $styleCell)->addText('Row 4', $fontStyle);$table->addCell(500, $styleCellBTLR)->addText('Row 5', $fontStyle);// Add more rows / cellsfor($i = 1; $i <= 10; $i++) { $table->addRow(); $table->addCell(2000)->addText("Cell $i"); $table->addCell(2000)->addText("Cell $i"); $table->addCell(2000)->addText("Cell $i"); $table->addCell(2000)->addText("Cell $i"); $text = ($i % 2 == 0) ? '中文中文' : '中文中文中文中文'; if ($i%2) { $table->addCell(500)->addText(mb_convert_encoding($text, 'UTF-8', 'gbk')); } else { $table->addCell(500)->addImage('_mars.jpg'); }}// Save File$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');$objWriter->save('AdvancedTable.docx');?>

 

转载于:https://www.cnblogs.com/heyafei/p/6518924.html

你可能感兴趣的文章
Intellij idea
查看>>
WEB_点击一百万次
查看>>
word20161228
查看>>
CodeForces - 878A Short Program(位运算)
查看>>
Mysql聚簇索引和非聚簇索引
查看>>
Hive入门之UDFS函数
查看>>
python文件操作笔记
查看>>
泛型委托
查看>>
笔试题拾遗
查看>>
与虚拟机Oracle连接出现ora-12154问题的解决
查看>>
JavaScript对象(一)
查看>>
Sublime View In Browser
查看>>
linux下可执行程序如何定位共享库文件以及如何让系统找到用户指定的库
查看>>
FPGA机器学习之机器学习的n中算法总结1
查看>>
Bootstrap的js插件之轮播(carousel)
查看>>
linux自旋锁
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
IPTABLES详解
查看>>
Linux 下tomcat 的重新启动
查看>>
利用node js 来创建一个服务器
查看>>