當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。