2017 © Pedro Peláez
 

library docxerator

Simple MS Word DOCX template processor

image

direct808/docxerator

Simple MS Word DOCX template processor

  • Thursday, September 21, 2017
  • by direct808
  • Repository
  • 0 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Docxerator

Docxerator is a simple MS Word DOCX template processor, (*1)

Features

  • Customizing the label templates
  • Processing of fragmented labels

Requirements

  • PHP version 5.6 or higher
  • XML extension
  • MBString extension

Install with composer

To install with Composer, simply require the latest version of this package., (*2)

composer require direct808/docxerator

Make sure that the autoload file from Composer is loaded., (*3)

// somewhere early in your project's loading, require the Composer autoloader
// see: http://getcomposer.org/doc/00-intro.md
require 'vendor/autoload.php';

Usage

Docxerator is very easy to use:, (*4)

// reference the Docxerator namespace
use Direct808\Docxerator\Docxerator;

// instantiate and use the Docxerator class
$docxerator = new Docxerator();

// open docx template file (contains the label #MARK#)
$docxerator->open('./you_docx_document.docx');

// Replace the label
$docxerator->replace('MARK', 'Your replaced content');

// Save the processing document
$processingDocumentPath = $docxerator->save();

Custom label format

$docxerator = new Docxerator();

// Docxerator will processing labels of the format {MARK}
$docxerator->setMarkPattern('/\{(\w+)\}/i');

$docxerator->open('./you_docx_document.docx');

$processingDocumentPath = $docxerator->save();

The Versions

21/09 2017

dev-master

9999999-dev

Simple MS Word DOCX template processor

  Sources   Download

MIT

The Development Requires

by Avatar direct808

ms word docx msword docxerator

21/09 2017

0.1.2

0.1.2.0

  Sources   Download

MIT

The Development Requires

by Avatar direct808

ms word docx msword docxerator

21/09 2017

0.1.1

0.1.1.0

  Sources   Download

The Development Requires

by Avatar direct808

ms word docx msword docxerator

20/09 2017

0.1.0

0.1.0.0

  Sources   Download

The Development Requires

by Avatar direct808

ms word docx msword docxerator