


This article mainly shares with you the detailed explanation of how the TP framework implements PHP data export to word, hoping to help everyone.
1. Use composer to install phpExcel (composer installation method → click me)
composer require phpoffice/phpexcel
2. Introduction of related classes
use PHPWord_IOFactory; use PHPWord;
3. Specific implementation methods
//调用插件 vendor('PHPWord'); vendor('PHPWord.IOFactory'); $phpWord = new \PhpOffice\PhpWord\PhpWord(); //实例化phpWord类 $properties = $phpWord->getDocInfo(); $properties->setCreator('My name'); //创建者 $properties->setCompany('My factory'); //公司 $properties->setTitle('My title'); //biao $properties->setDescription('My description'); //描述 $properties->setCategory('My category'); //分类 $properties->setLastModifiedBy('My name'); //最后修改者 $properties->setCreated( mktime(0, 0, 0, 3, 12, 2010) ); //创建时间 $properties->setModified( mktime(0, 0, 0, 3, 14, 2010) ); //修改时间 $properties->setSubject('My subject'); //主题 $properties->setKeywords('my, key, word'); //关键字 $sectionStyle = array( 'orientation' => null, //页面方向默认竖向 'marginLeft' => 900, 'marginRight' => 900, 'marginTop' => 900, 'marginBottom' => 900); $section = $phpWord->addSection($sectionStyle); //创建一个有样式的页面
Available section style options:
borderBottomColor. The color of the border bottom.
borderBottomSize. Border bottom size in twips.
borderLeftColor. The border leaves color.
borderLeftSize. Border left size in twips.
borderRightColor. The border is the correct color.
borderRightSize. The correct size of the border in twips.
borderTopColor. The color of the top of the border.
borderTopSize. Border top size in twips.
breakType. Section break type (nextPage, nextColumn, continuous, evenPage, oddPage).
colsNum. Number of columns.
colsSpace. The spacing between columns.
footerHeight. The spacing at the bottom of the footer.
gutter. Page gutter spacing.
headerHeight. Spacing to the top of the title.
marginTop. Page margins in twips.
marginLeft. Page blank (measured in twips).
marginRight. Correct page margins in twips.
marginBottom. Bottom margin in twips.
orientation. Page orientation (portrait, which is the default, or landscape).
pageSizeH. Page height in twips. Implicitly defined by the orientation option. No change is encouraged.
pageSizeW. Page width in twips. Implicitly defined by the orientation option. No change is encouraged.
//设置文本样式 $fontStyle = [ 'bgColor' => 'red', //字体背景色 'bold' => true, //是否加粗 'size' => '20', 'color' => 'green', //字体颜色 'doubleStrikethrough' => true //双实线 ]; //设置段样式 $paragraphStyle = [ 'bidi' => true, //从左到左 ]; $text = '所添加的文本内容'; //添加文本 $section->addText($text, $fontStyle, $paragraphStyle);
Available font style options:
allCaps. All caps, true or false.
bgColor. Font background color, such as FF0000.
bold. Bold, true or false.
color. Font color, such as FF0000.
doubleStrikethrough. Double strikethrough, true or false.
fgColor. Font highlight colors like yellow, green, blue.
See \PhpOffice\PhpWord\Style\Font::FGCOLOR_... constants for more values
hint. Font content type, default, eastAsia or cs.
italic. Italics, true or false.
name. Font name, such as Arial.
rtl. Right-to-left language, true or false.
size. Font size, e.g. 20, 22.
smallCaps. Small caps, true or false.
strikethrough. Strikethrough, true or false.
subScript. Subscript, true or false.
superScript. Superscript, true or false.
underline. Underline, single, dash, dot, etc.
See \PhpOffice\PhpWord\Style\Font::UNDERLINE_... constants for more values
lang. Language, such as en-US, fr-BE and other language codes or if you need to set the object (or array) of eastAsian or bidirectional language
View \PhpOffice\PhpWord\Style\Language classes for some language codes .
Available paragraph style options:
alignment. Supports all alignment modes since ECMA-376 standard version 1, up to ISO/IEC 29500:2012.
View the details of the \PhpOffice\PhpWord\SimpleType\Jc course.
basedOn. Parental style.
hanging. How much is the price?
indent. How much to shrink.
keepLines. Keep all rows on one page, true or false.
keepNext. Keep the paragraph with the next paragraph, true or false.
lineHeight. The height of the text line, such as 1.0, 1.5, etc.
next. Next style.
pageBreakBefore. Start paragraph on next page, true or false.
spaceBefore. Space before paragraph.
spaceAfter. Space after paragraph.
spacing. The space between the lines.
spacingLineRule. Line spacing rules. Automatically, exactly, atLeast
tabs. A set of custom tabs discontinued.
widowControl. Allow first/last row to be displayed on separate pages, true or false.
contextualSpacing. Ignore top and bottom spacing when using the same style, true or false.
bidi. Right-to-left paragraph layout, true or false.
shading. Paragraph shading.
textAlignment. Vertical character alignment on the line.
View the possible values of \PhpOffice\PhpWord\SimpleType\TextAlignment class.
//添加标题(相关样式需要单独设置) $phpWord->addTitleStyle(1, $fontStyle, $paragraphStyle); $section->addTitle('所添加的标题内容', 1);
Add title:
$phpWord->addTitleStyle($depth, [$fontStyle], [$paragraphStyle]);
$ section->addTitle($text, [$depth]);
$linkSrc = 'https://www.baidu.com'; //链接地址 $linkName = '百度搜索'; //链接名称 //添加超链接(相关样式需要单独设置) $section->addLink($linkSrc, $linkName, $fontStyle, $paragraphStyle);
Add hyperlink:
$section->addLink ($linkSrc, [$linkName], [$fontStyle], [$paragraphStyle]);
//添加页脚方法 $footer = $section->addFooter(); $footer->addPreserveText('Page {PAGE} of {NUMPAGES}.'); //向页眉或页脚添加页码或页数 $breakCount = 10; //设置换行数 $section->addTextBreak($breakCount, $fontStyle, $paragraphStyle); //设置换行 $section->addPageBreak(); //添加换页符 $section->addListItem("list1", 1, $fontStyle, $paragraphStyle); //创建列表 $section->addListItem("list2", 1, $fontStyle, $paragraphStyle); $section->addListItem("list3", 1, $fontStyle, $paragraphStyle); $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007'); $objWriter->save('AA.docx'); //生成word文件
Related recommendations:
Quickly master the principles of exporting Word documents from PHP_ PHP tutorial
Sample code for php to export word format data
The above is the detailed content of Detailed explanation of how TP framework implements php data export to word. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use
