2-4
phpWord基本用法
- 底下是基本頁面,其餘用請參考講義:https://www.tad0616.net/modules/tad_book3/page.php?tbdsn=1498
- 基本Word頁面:
<?php
require 'vendor/autoload.php';
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$filename = "檔名";
$filename = iconv("UTF-8", "Big5", $filename);
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
header('Content-Type: application/vnd.ms-word');
header("Content-Disposition: attachment;filename={$filename}.docx");
header('Cache-Control: max-age=0');
$objWriter->save('php://output');