├── PHPDocx_0.9.2.php ├── example.docx ├── image.jpg ├── index.php └── template ├── [Content_Types].xml ├── docProps ├── app.xml └── core.xml ├── image.xml ├── p.xml └── word ├── document.xml ├── fontTable.xml ├── settings.xml ├── styles.xml ├── stylesWithEffects.xml ├── theme └── theme1.xml └── webSettings.xml /PHPDocx_0.9.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/PHPDocx_0.9.2.php -------------------------------------------------------------------------------- /example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/example.docx -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/image.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/index.php -------------------------------------------------------------------------------- /template/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/[Content_Types].xml -------------------------------------------------------------------------------- /template/docProps/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/docProps/app.xml -------------------------------------------------------------------------------- /template/docProps/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/docProps/core.xml -------------------------------------------------------------------------------- /template/image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/image.xml -------------------------------------------------------------------------------- /template/p.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/p.xml -------------------------------------------------------------------------------- /template/word/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/document.xml -------------------------------------------------------------------------------- /template/word/fontTable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/fontTable.xml -------------------------------------------------------------------------------- /template/word/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/settings.xml -------------------------------------------------------------------------------- /template/word/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/styles.xml -------------------------------------------------------------------------------- /template/word/stylesWithEffects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/stylesWithEffects.xml -------------------------------------------------------------------------------- /template/word/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/theme/theme1.xml -------------------------------------------------------------------------------- /template/word/webSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkich/PHPDocx/HEAD/template/word/webSettings.xml --------------------------------------------------------------------------------