本文整理汇总了PHP中PhpOffice\PhpWord\PhpWord::loadTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP PhpWord::loadTemplate方法的具体用法?PHP PhpWord::loadTemplate怎么用?PHP PhpWord::loadTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhpOffice\PhpWord\PhpWord
的用法示例。
在下文中一共展示了PhpWord::loadTemplate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: download
/**
* Generate doc and download.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function download($id)
{
$poder = Poder::findOrFail($id);
$phpWord = new PhpWord();
$template = public_path() . "/download/poderespecial.docx";
$file = public_path() . "/download/" . $poder->id . "-" . $poder->poderante . ".docx";
$download = $phpWord->loadTemplate($template);
$d_fecha = new DateTime($poder->fecha);
$s_fecha = new DateTime($poder->fecha_siniestro);
$download->setValue('dia_fecha', $d_fecha->format("d"));
$download->setValue('mes_fecha', getMes($d_fecha->format("m")));
$download->setValue('ano_fecha', trim(valorEnLetras((int) $d_fecha->format("Y"))));
$download->setValue('poderante', strtoupper($poder->poderante));
$download->setValue('dni', $poder->dni);
$download->setValue('direccion', strtoupper($poder->direccion));
$download->setValue('localidad', $poder->localidad);
$download->setValue('demandado', strtoupper($poder->demandado));
$download->setValue('aseguradora', strtoupper($poder->aseguradora));
$download->setValue('fecha_siniestro', $s_fecha->format("d") . "." . $s_fecha->format("m") . "." . $s_fecha->format("Y"));
$download->setValue('dominio_siniestro', $poder->dominio_siniestro);
$download->setValue('direccion_siniestro', strtoupper($poder->direccion_siniestro));
$download->setValue('localidad', $poder->localidad);
$download->saveAs($file);
$headers = array('Content-Type: application/docx');
return response()->download($file, $poder->id . "-" . $poder->poderante . ".docx", $headers);
}
示例2: testLoadTemplateException
/**
* Test load template exception
*
* @expectedException \PhpOffice\PhpWord\Exception\Exception
*/
public function testLoadTemplateException()
{
$templateFqfn = join(DIRECTORY_SEPARATOR, array(PHPWORD_TESTS_BASE_DIR, 'PhpWord', 'Tests', '_files', 'templates', 'blanks.docx'));
$phpWord = new PhpWord();
$phpWord->loadTemplate($templateFqfn);
}
示例3: download
/**
* Generate doc and download.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function download($id)
{
$document = Document::findOrFail($id);
$phpWord = new PhpWord();
$template = public_path() . "/download/template.docx";
$file = public_path() . "/download/result.docx";
$download = $phpWord->loadTemplate($template);
$download->setValue('COMPANY', $document->company);
$download->setValue('OWNER', $document->owner);
$download->saveAs($file);
$headers = array('Content-Type: application/docx');
return response()->download($file, 'result.docx', $headers);
}