# 推奨: 「php office を pdf に変換する方法: 最初に「php.ini」を構成して環境を再起動し、次に office コンポーネント サービスを構成し、コンソールのルート ノードで [wps...] を見つけます。 -クリックしてプロパティを設定し、最後に、変換を実装するプログラムを作成します。
PHP ビデオ チュートリアル 」
1. 構成環境(1) php.ini を設定します追加: extension=php_com_dotnet.dllcom.allow_dcom = true // 番号を削除して true に変更します環境を再起動します(2) インストール: WPS Professional Edition、または Microsoft Office 2010 (Microsoft Office 2007 にはアドオンのインストールが必要です: Microsoft Save as PDF) (3) office の構成コンポーネント サービス win R ショートカット キーを押して実行メニューに入り、Dcomcnfg と入力します 検索: [コンポーネント サービス] - [コンピューター] - [マイ コンピューター] - [DCOM 構成] - [ [wps...] または [Microsoft Wrord 97-2003 ドキュメント] [wps...] または (Microsoft Wrord 97-2003 ドキュメント) が見つからない場合: win R キーを押します。ランメニューを入力するショートカットキークリックしてプロパティを設定し、「識別」を次のように設定します。 インタラクティブ ユーザー (
セキュリティの設定については、他の記事で確認できます
)
注:
対話型ユーザーの選択を開始しました: ログインすると、すべてが正常であるように見えます。リモート サーバーに接続します。リモート サーバーのインスタンス化コンポーネントを終了すると、エラーが報告されます。最後に、
次のユーザーを選択し、管理ユーザー ユーザーとパスワードのみを通常使用できます# を入力しました。 ##2. プログラムを作成します
<?php word2pdf(); function word2pdf() { $filenamedoc = dirname(__FILE__)."/index.docx"; $filenamepdf = dirname(__FILE__)."/index.pdf"; $dd = $word = new COM("KWPS.Application") or die ("Could not initialise Object."); // 或者 $dd = $word = new COM("Word.Application") or die ("Could not initialise Object."); // set it to 1 to see the MS Word window (the actual opening of the document) $word->Visible = 0; // recommend to set to 0, disables alerts like "Do you want MS Word to be the default .. etc" $word->DisplayAlerts = 0; // open the word 2007-2013 document $word->Documents->Open($filenamedoc); // save it as word 2003 // convert word 2007-2013 to PDF //判断要生成的文件名是否存在 if(file_exists($filenamepdf)) { //存在就删除 unlink ($filenamepdf); } $word->ActiveDocument->ExportAsFixedFormat($filenamepdf, 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false); // quit the Word process $word->Quit(false); // clean up unset($word); if(!function_exists('read_pdf')) { header('Content-type: application/pdf'); header('filename='.$filenamepdf); readfile($filenamepdf); read_pdf('Python_study.pdf'); } echo 'ok'; }?>
if(!function_exists('read_pdf')) { function read_pdf($file) { if(strtolower(substr(strrchr($file,'.'),1)) != 'pdf') { echo '文件格式不对.'; return; } if(!file_exists($file)) { echo '文件不存在'; return; } header('Content-type: application/pdf'); header('filename='.$file); readfile($file); } }
以上がPHPオフィスをPDFに変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。