PHP製做word簡歷

PHP操做word有一個很是好用的輪子,就是phpword,該輪子能夠在github上查找到(PHPOffice/PHPWord)。上面有較爲詳細的例子和代碼,其中裏面的源碼包含有一些經常使用的操做例子,包括設置頁眉、頁腳、頁碼、字體樣式、表格、插入圖片等經常使用的操做。這裏介紹的是如何使用該輪子來製做一個簡歷。php

模板替換的方式製做簡歷

在許多招聘網站都有一個簡歷下載的功能,如何用php實現呢?在PHPOffice/PHPWord裏面就有一個很是簡單的生成一個word文檔,向文檔中插入一些文字。這裏我使用的方式比較取巧,這個輪子的說明文檔中有template processing,我理解爲模板替換,也就是跟laravel的blade模板一個概念。接下來就很少廢話,直接說如何操做,這裏提一句使用的是laravel框架。laravel

1.安裝PHPOffice/PHPWordgit

composer require phpoffice/phpword

2.建立控制器DocController及test方法用於測試,並創建路由。github

php artisan make:controller DocController

3.創建word模板,這裏說明一下,該輪子替換的是word文檔中格式爲${value}格式的字符串,這裏我簡易的搭建一個模板以下圖1所示:
簡歷模板
從圖中能夠看到有一些基本的信息,這些能夠從數據庫中撈取數據。不過此次是直接使用替換的方式,像工做經歷和教育經歷這種多行表格的模式這裏也只須要取一行做爲模板便可。數據庫

4.具體代碼json

//load template docx
        $templateProcessor = new TemplateProcessor('./sample.docx');

        //基礎信息填寫替換
        $templateProcessor->setValue('update_at', date('Y-m-d H:i:s'));
        $templateProcessor->setValue('number', '123456');
        $templateProcessor->setValue('Name', '張三');
        $templateProcessor->setValue('sex', '男');
        $templateProcessor->setValue('birth', '1996年10月');
        $templateProcessor->setValue('age', '22');
        $templateProcessor->setValue('shortcut', '待業/aaa');
        $templateProcessor->setValue('liveArea', '福建省莆田市涵江區');
        $templateProcessor->setValue('domicile', '福建省莆田市涵江區');
        $templateProcessor->setValue('address', '');
        $templateProcessor->setValue('hopetodo', 'IT');
        $templateProcessor->setValue('hopeworkin', '互聯網');
        $templateProcessor->setValue('hopes', '7000+');
        $templateProcessor->setValue('worklocation', '福建省莆田市');
        $templateProcessor->setValue('phone', '123456789');
        $templateProcessor->setValue('mail', '456789@qq.com');
        $templateProcessor->setValue('qqnum', '456789');
        $templateProcessor->setValue('selfjudge', '哇哈哈哈哈哈哈哈');

        //工做經歷表格替換
        $templateProcessor->cloneRow('experience_time', 2);//該表經過克隆行的方式,造成兩行
        $templateProcessor->setValue('experience_time#1', '2010-09~2014-06');//每行參數是用value#X(X表示行號,從1開始)
        $templateProcessor->setValue('job#1', 'ABC company CTO');
        $templateProcessor->setValue('experience_time#2', '2014-09~至今');
        $templateProcessor->setValue('job#2', 'JBC company CTO');

        //教育經歷
        $templateProcessor->cloneRow('time', 2);
        $templateProcessor->setValue('time#1', '2010-09~2014-06');
        $templateProcessor->setValue('school#1', 'ABC');
        $templateProcessor->setValue('major#1', 'Computer science');
        $templateProcessor->setValue('time#2', '2014-09~至今');
        $templateProcessor->setValue('school#2', 'JBC');
        $templateProcessor->setValue('major#2', 'Computer science');

        //語言能力
        $templateProcessor->cloneRow('lang',2);
        $templateProcessor->setValue('lang#1', '漢語|精通');
        $templateProcessor->setValue('lang#2', '英語|精通');

        //技能
        $templateProcessor->cloneRow('skill',3);
        $templateProcessor->setValue('skill#1', 'JAVA|精通');
        $templateProcessor->setValue('skill#2', 'Python|精通');
        $templateProcessor->setValue('skill#3', 'PHP|精通');

        // Saving the document
        $templateProcessor->saveAs('my.docx');

這樣就能夠經過創建word模板的方式產生一個簡歷了。以上內容沒有提到如何將圖片替換進去,若是你查看文檔的話會發現這個包的模板替換並無說怎麼替換圖片,由於好像壓根這種方式就沒有提供,暈死。不過github的issue中有人提出了這個問題而且也有人給出瞭解決方案。下面我就來講說如何實現將圖片替換進去的功能。app

替換圖片

假設你的簡歷模板中有個表格單元格中要插入一張圖片,以下:
圖片描述composer

我要將public/img下的against the current.jpg圖片替換進去,而源代碼沒有將圖片替換進word的功能,因此只能本身編寫了。框架

  • 1.修改composer.json,將TemplateDocx類自動加載進來:
"autoload": {
        "classmap": [
            "database/seeds",
            "database/factories",
            "app/Core/TemplateDocx.php"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },

運行下列代碼:dom

composer dump-autoload
  • 2.實現TemplateDocx類:

該類的內容我直接放在個人gist上了,鏈接TemplateDocx.php

因爲code是放在gist上,國內訪問不了因此我直接把code貼出來,以下:

<?php
namespace App\Core;
use PhpOffice\PhpWord\Exception\Exception;
use PhpOffice\PhpWord\TemplateProcessor;
class TemplateDocx extends TemplateProcessor
{
    /**
     * @since 0.12.0 Throws CreateTemporaryFileException and CopyFileException instead of Exception
     *
     * @param string $documentTemplate The fully qualified template filename
     *
     * @throws \PhpOffice\PhpWord\Exception\CreateTemporaryFileException
     * @throws \PhpOffice\PhpWord\Exception\CopyFileException
     */
    public function __construct($documentTemplate)
    {
        parent::__construct($documentTemplate);
        //添加下列屬性,後面會用到
        $this->_countRels = 100; //start id for relationship between image and document.xml
        $this->_rels = '';
        $this->_types = '';
    }
    /**
     * Saves the result document.
     *
     * @throws \PhpOffice\PhpWord\Exception\Exception
     *
     * @return string
     */
    public function save()
    {
        foreach ($this->tempDocumentHeaders as $index => $xml) {
            $this->zipClass->addFromString($this->getHeaderName($index), $xml);
        }
        $this->zipClass->addFromString($this->getMainPartName(), $this->tempDocumentMainPart);
        /*****************重寫原有的save方法中添加的內容******************/
        if ($this->_rels != "") {
            $this->zipClass->addFromString('word/_rels/document.xml.rels', $this->_rels);
        }
        if ($this->_types != "") {
            $this->zipClass->addFromString('[Content_Types].xml', $this->_types);
        }
        /*********************我是分割線******************************/
        foreach ($this->tempDocumentFooters as $index => $xml) {
            $this->zipClass->addFromString($this->getFooterName($index), $xml);
        }
        // Close zip file
        if (false === $this->zipClass->close()) {
            throw new Exception('Could not close zip file.');
        }
        return $this->tempDocumentFilename;
    }
    /**
     * 實現將圖片替換進word穩定的方法
     * @param $strKey
     * @param $img
     */
    public function setImg($strKey, $img){
        $strKey = '${'.$strKey.'}';
        $relationTmpl = '<Relationship Id="RID" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/IMG"/>';
        $imgTmpl = '<w:pict><v:shape type="#_x0000_t75" style="width:WIDpx;height:HEIpx"><v:imagedata r:id="RID" o:title=""/></v:shape></w:pict>';
        $toAdd = $toAddImg = $toAddType = '';
        $aSearch = array('RID', 'IMG');
        $aSearchType = array('IMG', 'EXT');
        $countrels=$this->_countRels++;
        //I'm work for jpg files, if you are working with other images types -> Write conditions here
        $imgExt = 'jpg';
        $imgName = 'img' . $countrels . '.' . $imgExt;
        $this->zipClass->deleteName('word/media/' . $imgName);
        $this->zipClass->addFile($img['src'], 'word/media/' . $imgName);
        $typeTmpl = '<Override PartName="/word/media/'.$imgName.'" ContentType="image/EXT"/>';
        $rid = 'rId' . $countrels;
        $countrels++;
        list($w,$h) = getimagesize($img['src']);
        if(isset($img['swh'])) //Image proportionally larger side
        {
            if($w<=$h)
            {
                $ht=(int)$img['swh'];
                $ot=$w/$h;
                $wh=(int)$img['swh']*$ot;
                $wh=round($wh);
            }
            if($w>=$h)
            {
                $wh=(int)$img['swh'];
                $ot=$h/$w;
                $ht=(int)$img['swh']*$ot;
                $ht=round($ht);
            }
            $w=$wh;
            $h=$ht;
        }
        if(isset($img['size']))
        {
            $w = $img['size'][0];
            $h = $img['size'][1];
        }
        $toAddImg .= str_replace(array('RID', 'WID', 'HEI'), array($rid, $w, $h), $imgTmpl) ;
        if(isset($img['dataImg']))
        {
            $toAddImg.='<w:br/><w:t>'.$this->limpiarString($img['dataImg']).'</w:t><w:br/>';
        }
        $aReplace = array($imgName, $imgExt);
        $toAddType .= str_replace($aSearchType, $aReplace, $typeTmpl) ;
        $aReplace = array($rid, $imgName);
        $toAdd .= str_replace($aSearch, $aReplace, $relationTmpl);
        $this->tempDocumentMainPart=str_replace('<w:t>' . $strKey . '</w:t>', $toAddImg, $this->tempDocumentMainPart);
        //print $this->tempDocumentMainPart;
        if($this->_rels=="")
        {
            $this->_rels=$this->zipClass->getFromName('word/_rels/document.xml.rels');
            $this->_types=$this->zipClass->getFromName('[Content_Types].xml');
        }
        $this->_types       = str_replace('</Types>', $toAddType, $this->_types) . '</Types>';
        $this->_rels        = str_replace('</Relationships>', $toAdd, $this->_rels) . '</Relationships>';
    }
}
  • 3.使用方法:
$templateProcessor = new TemplateDocx('./sample.docx');
        $imgPath = './img/against the current.jpg';

        $templateProcessor->setImg('img', array(
            'src'  => $imgPath, //圖片路徑
            'size' => array( 150, 150 ) //圖片大小,單位px
        ));
        $templateProcessor->setValue('name', 'Sun');

        $templateProcessor->cloneRow('key', 2);//該表經過克隆行的方式,造成兩行
        $templateProcessor->setValue('key#1', '2010-09~2014-06');//每行參數是用value#X(X表示行號,從1開始)
        $templateProcessor->setValue('val#1', 'ABC company CTO');
        $templateProcessor->setValue('key#2', '2014-09~至今');
        $templateProcessor->setValue('val#2', 'JBC company CTO');
//        $templateProcessor->setValue('img', 'Sun');

        $templateProcessor->saveAs('my.docx');
  • 4.運行結果

圖片描述

至此就能夠產生簡歷啦,若是這篇文章對你有所幫助記得點贊哦,親!若是有任何問題能夠留言!!(* ̄︶ ̄)

相關文章
相關標籤/搜索