当前位置: 首页>>代码示例>>PHP>>正文


PHP PhpWord::loadTemplate方法代码示例

本文整理汇总了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);
 }
开发者ID:matiasvillanueva,项目名称:laravel5-CRUD-LOGIN,代码行数:32,代码来源:PodersController.php

示例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);
 }
开发者ID:kaantunc,项目名称:MYK-BOR,代码行数:11,代码来源:PhpWordTest.php

示例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);
 }
开发者ID:matiasvillanueva,项目名称:laravel5-CRUD-LOGIN,代码行数:19,代码来源:DocumentsController.php


注:本文中的PhpOffice\PhpWord\PhpWord::loadTemplate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。