php讀取word中的資料

2021-09-02 04:13:28 字數 569 閱讀 7797

1、安裝antiword

解壓:tar -zxvf filename

安裝:make && make install

安裝過程中,自動安裝到了/root目錄下,只有root才能執行該命令,我們需要修改一下路徑。copy到/usr中。

cp /root/bin/*antiword /usr/local/bin/

mkdir /usr/share/antiword

cp -r /root/.antiword/* /usr/share/antiword/

chmod 777 /usr/local/bin/*antiword

chmod 755 /usr/share/antiword/*

2、php**:

$content = shell_exec('/usr/local/bin/antiword '.$filename);

如果讀取的內容中中文為亂碼,再加上編碼即可:

$content = shell_exec('/usr/local/bin/antiword -m utf-8.txt '.$filename );

中讀取資料 讀取資料

對資料庫有一定了解的同學應該都知道資料表這個東西。資料表一般是以行列來儲存和展示資料的。每一列就是乙個資料字段,代表每一行資料的屬性。在python裡面也有類似表概念的東西,叫做dataframe。dataframe是我們資料分析和風控建模中很重要乙個元素,後續的很多資料操作都要以此為基礎。我們的資...

PHP讀取Excel資料

承接上篇 設定reader和編碼 file path test.xls excel5 reader new phpexcel reader excel5 excel5 reader defaultencoding encoding excel2007 reader new phpexcel read...

PHP讀取MySQL資料

先配置一下資料庫 define db host localhost 資料庫位址,一般為localhost define db user root 資料庫使用者名稱 define db psw 資料庫密碼 define db db databasename 需要操作的資料庫 連線 conn mysql...