php修改word内容,使⽤PHPWord对Word⽂件做模板替换原标题:使⽤PHPWord对Word⽂件做模板替换
⽂章排版有点乱,建议点击左下⾓的“阅读原⽂”查看。
因⼯作需要,使⽤了版本⽐较旧的 项⽬
官⽅已不见维护更新,上次版本更新是在 Fri Jul 8, 2011 at 8:00 AM
如果PHP版本>=5.3.3,强烈推荐使⽤ 这个开源项⽬
本篇针对的为旧版本的
基本安装
问题总结 Autoloader ⾃动加载部分情况下失败
在使⽤ Yii 1 配置⾃动加载时⽆法正常加载类库,需对其 PHPWord/Autoloader.php 做部分调整,这⼉借鉴了 PHPExcel 的Autoloader :
/** * PHPWord_Autoloader */classPHPWord_Autoloader{ /** * Register the Autoloader with SPL *
*/publicstaticfunctionRegister(){ $functions = spl_autoload_functions(); foreach( $functions as$function)
spl_autoload_unregister($function); $functions = array_merge( array( array( 'PHPWord_Autoloader', 'Load')),$functions); foreach( $functions as$function) $x = spl_autoload_register($function); return$x; } // function Register()/** * Autoload a class identified by name * * @paramstring $pClassName Name of the object to load
*/publicstaticfunctionLoad($pClassName){
if((class_exists($pClassName, FALSE)) || (strpos($pClassName, 'PHPWord') !== 0)) { // Either already loaded, or not a PHPWord class requestreturnFALSE; } $pClassFilePath = PHPWORD_BASE_PATH . str_replace(
'_',DIRECTORY_SEPARATOR,$pClassName) . '.php'; if((file_exists($pClassFilePath) === FALSE) ||
(is_readable($pClassFilePath) === FALSE)) {
// Can't loadreturnFALSE; } require($pClassFilePath); } // function Load()} 模板替换时⽆法识别模板标签 表现
使⽤/复制官⽅样例的模板⽂件替换正常
⾃⼰⼿动敲出模板标签替换异常原因
PHPWord的替换规则是将 Word ⽂件解析成 XML 进⾏替换处理,当 Word 解析成 XML 时字符分离了,导致匹配不上模板标签;
具体分析可参考⼀下资料:
解决办法
参考
改进 Template 类:
可参考 对 Template 类进⾏改造。
因为下⾯仍需要修改 Template 类,这⼉暂时就不贴代码了,下⾯⼀并贴出改造后的代码。
中⽂乱码
参考
编辑 PHPWord/Template.php ,到代码 $replace = utf8_encode($replace); ,删除或者注释掉这⾏代码,添加 $replace = iconv( 'gbk','utf-8', $replace); ,⽐如代码改为如下:
/** * Set a Template value * * @parammixed $search * @parammixed $replace */publicfunctionsetValue($search, $replace){ if(substr($search, 0, 2) !== '${'&& substr($search, -1) !== '}') { $search = '${'.$search. '}'; } if(!is_array($replace)) { //$replace = utf8_encode($replace);$replace =iconv( 'gbk', 'utf-8', $replace); // 注释掉上⾯⾏后添加这⾏} $this->_documentXML =
str_replace($search, $replace, $this->_documentXML);} 空格输出
参考
在想要输出换⾏的地⽅⽤
代替即可.
标记符号输出
参考
仅以输出 □ 和 ☑ 为例,其它符号与之类似。
注: PHP ⽂件需要使⽤ UTF-8 编码
在 Word ⽂件中按照参考⽂件⽅式插⼊ ☑ ;
复制符号到 PHP ⽂件;
正常的输出替换。
具体代码见如下的 项⽬代码。Template 类代码
// code
/*** Set a Template value** @parammixed $search* @parammixed $replace*/ public
functionsetValue($search, $replace, $limit=-1){
if(substr($search,
0,
1) !==
'{'&& substr($search,
-1) !==
'}') { $search =
'{'.$search.
'}'; }
php修改数据库内容
if(!is_array($replace)) {
// $replace = utf8_encode($replace);
// $replace = iconv( 'gbk','utf-8', $replace);$replace = str_replace(
"n",
"
",$replace); } preg_match_all(
'/{[^}]+}/',
$this->_documentXML, $matches);
foreach($matches[
0]
as$k => $match) { $no_tag = strip_tags($match);
if($no_tag == $search) { $match =
'{'.$match.
'}';
$this->_documentXML = preg_replace($match, $replace,
$this->_documentXML, $limit);
if($limit ==
1) {
break; } } }}
// code项⽬代码
// @author Heier xheier@outlook
public
functionactionExportPersonTable(){
// 获取数据部分代码
// ...$PHPWord =
newPHPWord();
// Word模板⽬录$personBasePath = Yii::app()->basePath.
'/person/';
// 删除⽬录下临时⽂件-⼗分钟以前
$this->delfile( $personBasePath,
10);
// 模板⽂件名$tempName = $personBasePath .
'/moban.docx'; $word = $PHPWord->loadTemplate( $tempName ); // 项⽬使⽤的是GBK编码,需要做转换$username = iconv(
'gbk',
'utf-8', getUserNameById($personData[
0][
'user_id']) ); $personal_type = $personData[
0][
'personal_type'];
// 模板替换开始
// 可以输出打勾的⽅框$deptA=$deptBP=$deptB=$deptC=$deptD = '□';
if( $DirectorLevel ==
'A') { $deptA =
'☑'; }
elseif( $DirectorLevel ==
'B+') { $deptBP =
'☑'; }
elseif( $DirectorLevel ==
'B') { $deptB =
'☑'; }
elseif( $DirectorLevel ==
'C') { $deptC =
'☑'; }
elseif( $DirectorLevel ==
'D') { $deptD =
'☑'; } $word->setValue(
'deptA', $deptA); $word->setValue(
'deptBP', $deptBP); $word->setValue(
'deptB', $deptB); $word->setValue(
'deptC', $deptC); $word->setValue(
'deptD', $deptD);
// 设置其它替换
// ...
// ⽣成临时⽂件以供下载$tmpFileName = md5( time().
'Heier'); $word->save($personBasePath .
'/'. $tmpFileName .
'.docx'); $file = $personBasePath .
'/'. $tmpFileName .
'.docx';
// 下载Word⽂件ob_start();
//打开缓冲区$fp = fopen($file,
"r"); $file_size = filesize($file); $downFileName =
'XXX.docx'; header(
"Cache-Control: public"); header(
"Content-type: application/octet-stream"); header(
"Accept-Ranges: bytes"); header(
"Content-Disposition: attachment; filename={$downFileName}"); header( "Pragma:no-cache"); header(
"Expires:0"); $buffer =
1024; $file_count =
0;
//向浏览输出回数据
while(!feof($fp) && $file_count < $file_size){ $file_con = fread($fp,$buffer); $file_count += $buffer; echo$file_con; } ob_end_flush();
//输出全部内容到浏览器} 参考⽂档汇总
;
;
;
;
;
;
关注:PHP技术⼤全
PHPer升级为⼤神并不难!返回搜狐,查看更多
责任编辑:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。