Maison  >  Article  >  cadre php  >  Partager le cas Word d'exportation de contenu ThinkPHP6.0

Partager le cas Word d'exportation de contenu ThinkPHP6.0

藏色散人
藏色散人avant
2020-12-22 09:19:592827parcourir

Ce qui suit est un cas d'exportation de contenu ThinkPHP6.0 vers Word à partir de la colonne du didacticiel du framework thinkphp. J'espère que cela sera utile aux amis dans le besoin !

Partager le cas Word d'exportation de contenu ThinkPHP6.0

(1) Configuration de l'environnement

  • Environnement de base
    • Système Environnement : Windows10 x64
    • Environnement intégré PHP : phpstudy
    • Outil de gestion des dépendances PHP : Composer
    • Manuel : Thinkphp

(2) Installez ThinkPHP6.0 et l'extension Phpword

(1) Installez ThinkPHP6.0

composer create-project topthink/think phpword

(2) Installez le plug-in phpword- in

composer require phpoffice/phpword

(3) Exportation de contenu word

(1) Exportation de contenu pour générer un document word

<?php
namespace app\admin\service;

use Jrk\Tool;
use PhpOffice\PhpWord\IOFactory;
use PhpOffice\PhpWord\PhpWord;

class WordService
{
    /**
     * @param $text
     * @param null $title
     * @param bool $save
     * @return array
     * @throws \PhpOffice\PhpWord\Exception\Exception
     * @author: LuckyHhy <jackhhy520@qq.com>
     * @describe:
     */
    public static function exportToword($text,$title=null,$save=false){
        $phpWord=new PhpWord(); //实例化
        //调整页面样式
        $sectionStyle = array(&#39;orientation&#39; => null,
            &#39;marginLeft&#39; => 300,
            &#39;marginRight&#39; => 300,
            &#39;marginTop&#39; => 300,
            &#39;marginBottom&#39; => 400);
        $section = $phpWord->addSection($sectionStyle);
        //添加页眉
      /*  $header=$section->addHeader();
        $k=$header->addTextRun();
        //页眉添加一张图片
        $k->addImage(app()->getRootPath().&#39;public&#39;.DS."static/images/jrk.jpg",array(
            &#39;width&#39;         => &#39;100%&#39;,
            &#39;height&#39;        => 60,
            &#39;marginTop&#39;     => -1,
            &#39;marginLeft&#39;    => 1,
            &#39;wrappingStyle&#39; => &#39;behind&#39;,
        ));*/

        //添加页脚
        $footer = $section->addFooter();
        $f=$footer->addTextRun();

        $f->addImage(app()->getRootPath().&#39;public&#39;.DS."static/images/jrk.jpg",array(
            &#39;width&#39;         => 105,
            &#39;height&#39;        => 65,
            &#39;marginTop&#39;     => -1,
            &#39;marginLeft&#39;    => 1,
            &#39;wrappingStyle&#39; => &#39;behind&#39;,
        ));

        $footer->addPreserveText(&#39;Page {PAGE} of {NUMPAGES}.&#39;,array(&#39;align&#39;=>&#39;center&#39;));

        //添加标题
        if (!empty($title)){
            $section->addText(
                $title,
                array(&#39;name&#39; => &#39;黑体&#39;, &#39;size&#39; => 15),
                array(&#39;align&#39;=>&#39;center&#39;)
            );
        }
        //添加换行符
        $section->addTextBreak(2);

        //添加文本
        if (is_array($text)){
            foreach ($text as $v){
                $section->addText(
                    $v,
                    array(&#39;name&#39; => &#39;Arial&#39;, &#39;size&#39; => 13),
                    array(&#39;lineHeight&#39;=>1.5,&#39;indent&#39;=>1)
                );
            }
        }else{
            $section->addText(
                $text,
                array(&#39;name&#39; => &#39;Arial&#39;, &#39;size&#39; => 13),
                array(&#39;lineHeight&#39;=>1.5,&#39;indent&#39;=>1)
            );
        }
        $fname=Tool::uniqidDateCode();
        if ($save){
            /*保存文档到本地*/
            $objwrite =IOFactory::createWriter($phpWord);
            $t=date("Ymd",time());
            //保存的路径和中文名称适应
            $dir      = iconv("UTF-8", "GBK", app()->getRootPath().&#39;public&#39;.DS.&#39;words&#39;.DS.$t);
            if (!file_exists($dir)) {
                @mkdir($dir, 0777, true);
            }
            $pa = $t."/".$fname.".docx";
            $objwrite->save(app()->getRootPath().&#39;public&#39;.DS.&#39;phpoffices/words&#39;.DS.$pa);
            return  [&#39;code&#39;=>1,&#39;url&#39;=>&#39;/phpoffices/words/&#39;.$pa,&#39;domain&#39;=>request()->domain(true)];
        }else{
            //不保存到服务器,直接输出浏览器下载
            $name=$fname.".docx"; //文件名称
            $phpWord->save($name,"Word2007",true);
        }
        exit;
    }
}

(2 ) Fichier html de génération de contenu

 /**
     * @param $text
     * @param bool $save
     * @return array
     * @throws \PhpOffice\PhpWord\Exception\Exception
     * @author: LuckyHhy <jackhhy520@qq.com>
     * @describe:
     */
    public static function makeHtml($text,$save=false){
        $phpWord=new PhpWord(); //实例化
        $section = $phpWord->addSection();

        $fontStyleName = &#39;oneUserDefinedStyle&#39;;
        $phpWord->addFontStyle(
            $fontStyleName,
            array(&#39;name&#39; => &#39;Tahoma&#39;, &#39;size&#39; => 13, &#39;color&#39; => &#39;1B2232&#39;, &#39;bold&#39; => true)
        );
        if (is_array($text)){
            foreach ($text as $v){
                $section->addText(
                    $v,
                    $fontStyleName
                );
            }
        }else{
            $section->addText(
                $text,
                $fontStyleName
            );
        }
        $fname=Tool::uniqidDateCode();
        if ($save){
            $objwrite = IOFactory::createWriter($phpWord, &#39;HTML&#39;);
            $t=date("Ymd",time());
            //保存的路径和中文名称适应
            $dir      = iconv("UTF-8", "GBK", app()->getRootPath().&#39;public&#39;.DS.&#39;phpoffices/htmls&#39;.DS.$t);
            if (!file_exists($dir)) {
                @mkdir($dir, 0777, true);
            }
            $pa = $t."/".$fname.".html";
            $objwrite->save(app()->getRootPath().&#39;public&#39;.DS.&#39;phpoffices/htmls&#39;.DS.$pa);
            return  [&#39;code&#39;=>1,&#39;url&#39;=>&#39;/phpoffices/htmls/&#39;.$pa,&#39;domain&#39;=>request()->domain(true)];
        }else{
            $name=$fname.".html"; //文件名称
            $phpWord->save($name,"HTML",true);
        }
        exit;
    }

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer