我的基本PHPWord设置正在运行。
这是我的代码:
<?php
require_once 'PhpWord/Autoloader.php';
\PhpOffice\PhpWord\Autoloader::register();
function getEndingNotes($writers)
{
$result = '';
// Do not show execution time for index
if (!IS_INDEX) {
$result .= date('H:i:s') . " Done writing file(s)" . EOL;
$result .= date('H:i:s') . " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB" . EOL;
}
// Return
if (CLI) {
$result .= 'The results are stored in the "results" subdirectory.' . EOL;
} else {
if (!IS_INDEX) {
$types = array_values($writers);
$result .= '<p> </p>';
$result .= '<p>Results: ';
foreach ($types as $type) {
if (!is_null($type)) {
$resultFile = 'results/' . SCRIPT_FILENAME . '.' . $type;
if (file_exists($resultFile)) {
$result .= "<a href='{$resultFile}' class='btn btn-primary'>{$type}</a> ";
}
}
}
$result .= '</p>';
}
}
return $result;
}
// Template processor instance creation
$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor('template.docx');
// Variables on different parts of document
//$templateProcessor->setValue('vorname', htmlspecialchars('John')); // On section/content
//$templateProcessor->setValue('nachname', htmlspecialchars('Doe')); // On footer
//$templateProcessor->setValue('funktion', htmlspecialchars('Manager'));
// Simple table
$templateProcessor->cloneRow('rowValue', 10);
//clone our things
// Will clone everything between ${tag} and ${/tag}, the number of times. By default, 1.
$templateProcessor->cloneBlock('CLONEME', 5);
//delete things
// Everything between ${tag} and ${/tag}, will be deleted/erased.
$templateProcessor->deleteBlock('DELETEME');
// Saving the document as OOXML file...
$temp_file = tempnam(sys_get_temp_dir(), 'PHPWord');
ob_clean();
$templateProcessor->saveAs($temp_file);
getEndingNotes(array('Word2007' => 'docx'));
header("Content-Disposition: attachment; filename='cv.docx'");
readfile($temp_file); // or echo file_get_contents($temp_file);
unlink($temp_file); // remove temp file
?>
它适用于这个词file。
然而,当我在word文件中更改某些内容时,PHPWord会提供一个corupted文件。它与XML错误有关。我的问题是,如何编辑我的word文件并获得一个完美的文件而不会出错? 有没有修复XML的工具?
答案 0 :(得分:1)
我找到了答案,在编辑单词文件时,在单词之间插入不同的xml元素。我必须在编辑器中手动编辑文件,确保替换值不被标签分隔。
答案 1 :(得分:1)
我遇到了同样的问题,这是通过Google搜索的第一个回复。
我发现使用&#34; deleteBlock()&#34;删除不需要的部分的功能将对模板执行某些操作,使其无法使用MS Word / Google Docs打开。我可以用Mac页面打开就好了,但由于某些原因,deleteBlock()函数在导出时做了一些奇怪的事情。
我的编辑不是使用deleteBlock(),而是:
$templateProcessor->cloneBlock('HOBBYBLOCK', 0);
(&#34; Hobbies&#34;只是我逐案出口时避免的部分的名称)
这似乎解决了我的问题。对于将来发现这一点且需要帮助排除故障的人来说,这是一个很好的选择。 :^}