支店長:
PHPWord は、純粋な PHP で書かれたライブラリであり、さまざまなドキュメント ファイル形式に書き込みおよび読み取りを行うためのクラスのセットを提供します。 PHPWord の現在のバージョンは、Microsoft Office Open XML (OOXML または OpenXML)、Office アプリケーション用の OASIS Open Document Format (OpenDocument または ODF)、リッチ テキスト フォーマット (RTF)、HTML、および PDF をサポートしています。
PHPWord は、LGPL バージョン 3 の条件に基づいてライセンスされたオープン ソース プロジェクトです。PHPWord は、継続的統合と単体テストを組み込むことで高品質のソフトウェア製品になることを目指しています。 PHPWord について詳しくは、開発者向けドキュメントを参照してください。
ご質問がある場合は、StackOverFlow で質問してください
PHPWord について詳しくは、こちらをご覧ください。
PHPWord を使用すると、PHP スクリプトを使用して OOXML、ODF、または RTF ドキュメントを動的に作成できます。以下は、PHPWord ライブラリを使用して実行できることの一部です。
PHPWord には次のものが必要です。
PHPWord は Composer 経由でインストールされます。プロジェクト内の PHPWord に依存関係を追加するには、次のいずれかを実行します。
最新の安定バージョンを使用するには、次のコマンドを実行します。
composer require phpoffice/phpword
または、最新の未リリースバージョンが必要な場合
composer require phpoffice/phpword:dev-master
以下は、PHPWordライブラリの基本的な使用例です。
require_once ' bootstrap.php ' ;
// Creating the new document...
$ phpWord = new PhpOffice PhpWord PhpWord ();
/* Note: any element you append to a document must reside inside of a Section. */
// Adding an empty Section to the document...
$ section = $ phpWord -> addSection ();
// Adding Text element to the Section having font styled by default...
$ section -> addText (
' "Learn from yesterday, live for today, hope for tomorrow. '
. ' The important thing is not to stop questioning." '
. ' (Albert Einstein) '
);
/*
* Note: it's possible to customize font style of the Text element you add in three ways:
* - inline;
* - using named font style (new font style object will be implicitly created);
* - using explicitly created font style object.
*/
// Adding Text element with font customized inline...
$ section -> addText (
' "Great achievement is usually born of great sacrifice, '
. ' and is never the result of selfishness." '
. ' (Napoleon Hill) ' ,
array ( ' name ' => ' Tahoma ' , ' size ' => 10 )
);
// Adding Text element with font customized using named font style...
$ fontStyleName = ' oneUserDefinedStyle ' ;
$ phpWord -> addFontStyle (
$ fontStyleName ,
array ( ' name ' => ' Tahoma ' , ' size ' => 10 , ' color ' => ' 1B2232 ' , ' bold ' => true )
);
$ section -> addText (
' "The greatest accomplishment is not in never falling, '
. ' but in rising again after you fall." '
. ' (Vince Lombardi) ' ,
$ fontStyleName
);
// Adding Text element with font customized using explicitly created font style object...
$ fontStyle = new PhpOffice PhpWord Style Font ();
$ fontStyle -> setBold ( true );
$ fontStyle -> setName ( ' Tahoma ' );
$ fontStyle -> setSize ( 13 );
$ myTextElement = $ section -> addText ( ' "Believe you can and you ' re halfway there." (Theodor Roosevelt) ' );
$ myTextElement -> setFontStyle ( $ fontStyle );
// Saving the document as OOXML file...
$ objWriter = PhpOffice PhpWord IOFactory :: createWriter ( $ phpWord , ' Word2007 ' );
$ objWriter -> save ( ' helloWorld.docx ' );
// Saving the document as ODF file...
$ objWriter = PhpOffice PhpWord IOFactory :: createWriter ( $ phpWord , ' ODText ' );
$ objWriter -> save ( ' helloWorld.odt ' );
// Saving the document as HTML file...
$ objWriter = PhpOffice PhpWord IOFactory :: createWriter ( $ phpWord , ' HTML ' );
$ objWriter -> save ( ' helloWorld.html ' );
/* Note: we skip RTF, because it's not XML-based and requires a different example. */
/* Note: we skip PDF, because "HTML-to-PDF" approach is used to create PDF documents. */
さらに多くの例がサンプル フォルダーにあります。これらのサンプルに簡単にアクセスするには、サンプル ディレクトリでphp -S localhost:8000
起動し、http://localhost:8000 にアクセスしてサンプルを表示します。詳細については、開発者向けドキュメントを読むこともできます。
PHPWord への貢献を歓迎します。以下は、貢献するためにできることの一部です。