码迷,mamicode.com
首页 > Web开发 > 详细

PHP在linux读取word文档

时间:2017-01-03 12:54:20      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:google   std   安装   charset   anti   roo   tle   允许   png   

 

 

这几天帮朋友解决一个技术问题,在Linux下,将word文档中的内容读取,然后使用正则匹配,拼成sql入库

查阅了外文资料和google之后,步骤如下:

#wget http://www.winfield.demon.nl/linux/antiword-0.37.tar.gz
#tar zxvf antiword-0.37.tar.gz
#cd antiword-0.37
#make
#make install 

 

安装完成之后,如果要在web上查看的话,需要使用root执行 make global_install

 

 

[php] view plain copy
 
 技术分享技术分享
  1. <?php  
  2. header("Content-type: text/html; charset=utf-8");  
  3.   
  4.   
  5. $filename = ‘test.doc‘;  
  6. #$content = shell_exec(‘antiword ‘.$filename);  
  7. $content = shell_exec(‘antiword -mUTF-8 ‘.$filename);   
  8.   
  9.   
  10. echo ‘<pre>‘;  
  11. print_r ($content);  
  12. echo ‘</pre>‘;  

PHP在linux读取word文档

标签:google   std   安装   charset   anti   roo   tle   允许   png   

原文地址:http://www.cnblogs.com/cc-716/p/6244277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!