当前位置:首页 > PHP教程 > php高级应用 > 列表

php生成word两种方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-08 21:48:22 浏览: 评论:0 

1.正常的touch创建word 2.fopen 打开word 3.fwrite 写入word 并保存

这样会出现一个问题,如果写入的东西里面含有html代码的话,它将直接写入word而不是 排版了.

这个问题,需要在输出html代码头部加一段代码:

  1. $headert='<html xmlns:o="urn:schemas-microsoft-com:office:office" 
  2.   xmlns:w="urn:schemas-microsoft-com:office:word" 
  3.   xmlns="http://www.w3.org/tr/rec-html40">'; 
  4.   $footer="</html>"

比如你的内容是$text;

那么写入的时候$text=$header.$text.$footer;

这样的话fck里面的东西就能按排版的样式输出了!

方法一,实例代码如下:

  1. <?php 
  2. $wordnew com("word.application"or die("unable to 
  3. create word document"); 
  4. print "loaded word, version{$word->version}n"
  5. $word->visible =0; 
  6. $word->documents->add(); 
  7. //设置边距 这个有错误 
  8. // $word->selection->agesetup->rightmargin ='3"'; 
  9. //设置字体 这 
  10. $word->selection->font->name ='helvetica'
  11. //设置字号 
  12. $word->selection->font->size = 8; 
  13. //设置颜色 
  14. $word->selection->font->colorindex= 13; //wddarkred= 13 
  15. //输出到文档 
  16. $word->selection->typetext("hello world "); 
  17. //开源代码phpfensi.com 
  18. $range = $word->activedocument->range(0,0); 
  19. $table_t =$word->activedocument->tables->add($range,3,4); 
  20. $table_t->cell(1,2)->range->insertafter('aaa'); 
  21. //保存 
  22. //$word->sections->add(1); 
  23. $word->documents[1]->saveas(dirname(__file__)."/create_test.doc"); 
  24. //退出 
  25. $word->quit(); 
  26. ?> 

方法二,实例代码如下:

  1. <?php 
  2. class word 
  3. function start() 
  4. ob_start(); 
  5. print'<html xmlns:o="urn:schemas-microsoft-com:office:office" 
  6. xmlns:w="urn:schemas-microsoft-com:office:word" 
  7. xmlns="http://www.w3.org/tr/rec-html40">'; 
  8. function save($path
  9. print "</html>"
  10. $data = ob_get_contents(); 
  11. ob_end_clean(); 
  12. $this->wirtefile ($path,$data); 
  13. function wirtefile ($fn,$data
  14. $fp=fopen($fn,"wb"); 
  15. fwrite($fp,$data); 
  16. fclose($fp); 
  17. ?> 

调用方法,代码如下:

  1. $word=new word; 
  2. $word->start(); 
  3. echo $cout
  4. $wordname="word/".time().".doc"
  5. $word->save($wordname);//保存word并且结束 

Tags: php生成word 生成word

分享到: