<?php
require_once 'PHPWord.php';
// New Word Document
$PHPWord = new PHPWord();
// New portrait section
$section = $PHPWord->createSection();
$PHPWord->addFontStyle('rStyle', array('bold'=>true,'color'=>'000000','size'=>16));
$PHPWord->addParagraphStyle('pStyle', array('align'=>'center'));
$section->addText('×××公司招聘信息', 'rStyle', 'pStyle');
$section->addTextBreak(2);
// Define table style arrays
$styleTable = array('borderSize'=>6, 'borderColor'=>'006699', 'cellMargin'=>80);
// Add table style
$PHPWord->addTableStyle('myOwnTableStyle', $styleTable);
// Add table
$table = $section->addTable('myOwnTableStyle');
$fontStyle = array('bold'=>true, 'align'=>'center');
// Add more rows / cells
$table->addRow();
$table
PHPWord生成文档 表格,复制模板文档
最新推荐文章于 2024-03-14 10:53:29 发布
本文介绍如何利用PHPWord库在PHP中生成和操作Word文档,特别是重点讲解了如何基于模板创建带有表格的Word文件。
摘要由CSDN通过智能技术生成