Heim  >  Artikel  >  Backend-Entwicklung  >  php生成word最简单的例子

php生成word最简单的例子

WBOY
WBOYOriginal
2016-07-25 09:04:011388Durchsuche
  1. class word
  2. {
  3. function start()
  4. {
  5. ob_start();
  6. print'xmlns:w="urn:schemas-microsoft-com:office:word"
  7. xmlns="http://www.w3.org/TR/REC-html40">';
  8. }
  9. function save($path)
  10. {
  11. print "";
  12. $data = ob_get_contents();
  13. ob_end_clean();
  14. $this->wirtefile ($path,$data);
  15. }
  16. function wirtefile ($fn,$data)
  17. {
  18. $fp=fopen($fn,"wb");
  19. fwrite($fp,$data);
  20. fclose($fp);
  21. }
  22. }
  23. ?>
复制代码
编辑推荐: php导出word格式文档的实例代码 php生成excel或word文档的最简单方法 php生成word文档(读取数据库) php使用phpword生成word文档的例子 php生成word文件的简单范例 php 生成 导出word(可包含图片)的代码 php生成word的例子 php使用phpword生成word文档


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn