成都公司:成都市成華區(qū)建設(shè)南路160號1層9號
重慶公司:重慶市江北區(qū)紅旗河溝華創(chuàng)商務(wù)大廈18樓
當(dāng)前位置:工程項目OA系統(tǒng) > 泛普各地 > 江西OA系統(tǒng) > 南昌OA系統(tǒng) > 南昌網(wǎng)站建設(shè)公司
PHP設(shè)計模式介紹值對象模式
PHP操作word文檔的二種辦法
辦法一:應(yīng)用php com模塊 。也即應(yīng)用word供應(yīng)的當(dāng)?shù)豠pi,一切只合用于windows系統(tǒng)上。

view plaincopy to clipboardprint?
<?php
$word = new com('word.application') or die('無法翻開word');
$word->Visiable = false;
$doc_file = '/path/to/doc';
$word->Open($doc_file);
$text = '這段文字將被寫到word文檔中去';
$word->Selection->TypeText($text);
//保管
$word->ActiveDocument->Save();
//讀取內(nèi)容
$doc_file_contents = $word->ActiveDocument->Content->Text;
//輸出word內(nèi)容
$word->PrintOut();
$word->Close();
?>
<?php
$word = new com('word.application') or die('無法翻開word');
$word->Visiable = false;
$doc_file = '/path/to/doc';
$word->Open($doc_file);
$text = '這段文字將被寫到word文檔中去';
$word->Selection->TypeText($text);
//保管
$word->ActiveDocument->Save();
//讀取內(nèi)容
$doc_file_contents = $word->ActiveDocument->Content->Text;
//輸出word內(nèi)容
$word->PrintOut();
$word->Close();
?>
應(yīng)用com銜接word,常常無法預(yù)期運轉(zhuǎn)成功,不不變當(dāng)前也不曉得是什么緣由,臨時靠命運運限吧。
辦法二:應(yīng)用catdoc。catdoc是linux上的東西,需求自行裝置裝備。
view plaincopy to clipboardprint?
<?php
//catdoc地位
$cat_doc = '/usr/local/bin/catdoc';
$doc_file = 'this is a doc file';
//讀取word文件內(nèi)容
$doc_file_contents = shell_exec($cat_doc . ' ' . $doc_file);
echo nl2br($doc_file_contents);
?>
<?php
//catdoc地位
$cat_doc = '/usr/local/bin/catdoc';
$doc_file = 'this is a doc file';
//讀取word文件內(nèi)容
$doc_file_contents = shell_exec($cat_doc . ' ' . $doc_file);
echo nl2br($doc_file_contents);
?>
關(guān)于更多catdoc的相關(guān)功用,請查閱catdoc文檔。
因為catdoc是linux的東西,所以上面的這段代碼只能運轉(zhuǎn)在linux效勞器上,罷了必需裝置了catdoc。
本站推薦
- 1《PHP項目跟蹤管理系統(tǒng)操作流程指南:高效管理項目進度與團隊協(xié)作的實用手冊》
- 2使用ThinkPHP框架構(gòu)建高效學(xué)生管理系統(tǒng)的獨特優(yōu)勢與實際應(yīng)用價值
- 3試用PHP軟件項目管理工具:優(yōu)化項目流程,提高團隊協(xié)作效率的絕佳選擇
- 4php生產(chǎn)制造物料管理系統(tǒng)源碼含詳細注釋與高效功能示例
- 5php采購倉庫管理系統(tǒng)助力企業(yè)高效庫存管控與采購流程優(yōu)化
- 6PHP打造超實用商品庫存管理系統(tǒng),高效管控庫存不是夢!
- 7php庫存管理系統(tǒng)論文:實現(xiàn)高效庫存管控的技術(shù)方案剖析
- 8php庫存管理系統(tǒng)源碼含詳細注釋與功能擴展教程
- 9php庫存管理系統(tǒng)教程:從搭建到高效應(yīng)用全

