PHPOffice下PHPWord生成Word2007(docx)使用方法

时间:2024-04-30 19:23:07

要正常使用,下载依赖包:

PhpOffice/Common:https://github.com/PHPOffice/Common

Zend/Escaper:https://github.com/zendframework/zend-escaper

Zend/Stdlib:https://github.com/zendframework/zend-stdlib

Zend/Validator:https://github.com/zendframework/zend-validator

引用方法:

 spl_autoload_register(function ($class) {
$class = ltrim($class, '\\');
$class = str_replace('\\', '/', $class);
$file = CORE .'/' . $class . '.php';
if (file_exists($file)) {
require_once $file;
}
});
include CORE .'/PhpOffice/PhpWord/PhpWord.php';

使用方法: