PHP操作word有一個非常好用的輪子,就是phpword,可以在github上查找到(PHPOffice/PHPWord)。上面有較詳細的例子和程式碼,其中裡面的原始碼包含一些常用的操作例子,包括設定頁首、頁尾、頁碼、字體樣式、表格、插入圖片等常用的操作。這裡介紹的是如何使用該輪子來製作一個履歷。
在許多招募網站都有一個履歷下載的功能,如何用php實作呢?在PHPOffice/PHPWord裡面就有一個非常簡單的生成一個word文檔,向文檔中插入一些文字。這裡我使用的方式比較取巧,這個輪子的說明文檔中有template processing,我理解為模板替換,也就是跟laravel的blade模板一個概念。接下來就不多廢話,直接說如何操作,這裡提一句使用的是laravel框架。
1.安裝PHPOffice/PHPWord
composer require phpoffice/phpword
2.建立控制器DocController及test方法用於測試,並建立路由。
php artisan make:controller DocController
3.建立word模板,這裡說明一下,該輪子替換的是word文檔中格式為${value}格式的字串,這裡我簡易的搭建一個模板如下圖1所示:
從圖中可以看到有一些基本的信息,這些可以從資料庫中撈取資料。不過這次是直接使用替換的方式,像工作經驗和教育經歷這種多行表格的模式這裡也只需要取一行作為模板即可。
4.具體程式碼
//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模板的方式產生一個履歷了。
相關推薦:
以上是PHP製作word履歷的詳細內容。更多資訊請關注PHP中文網其他相關文章!