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


PHP HTML2PDF::textLOAD方法代码示例

本文整理汇总了PHP中HTML2PDF::textLOAD方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML2PDF::textLOAD方法的具体用法?PHP HTML2PDF::textLOAD怎么用?PHP HTML2PDF::textLOAD使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HTML2PDF的用法示例。


在下文中一共展示了HTML2PDF::textLOAD方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructeur
  *
  * @param	string		sens portrait ou landscape
  * @param	string		format A4, A5, ...
  * @param	string		langue : fr, en, it...
  * @param	boolean		$unicode TRUE means that the input text is unicode (default = true)
  * @param 	String		$encoding charset encoding; default is UTF-8
  * @param	array		marges par defaut, dans l'ordre (left, top, right, bottom)
  * @return	null
  */
 public function __construct($sens = 'P', $format = 'A4', $langue = 'en', $unicode = true, $encoding = 'UTF-8', $marges = array(5, 5, 5, 8))
 {
     // sauvegarde des paramètres
     $this->page = 0;
     $this->sens = $sens;
     $this->format = $format;
     $this->unicode = $unicode;
     $this->encoding = $encoding;
     $this->firstPage = true;
     $this->langue = strtolower($langue);
     // chargement du fichier de langue
     HTML2PDF::textLOAD($this->langue);
     // création de l' objet PDF
     $this->pdf = new MyPDF($sens, 'mm', $format, $unicode, $encoding);
     // initialisation des styles
     $this->style = new styleHTML($this->pdf);
     $this->style->FontSet();
     $this->defLIST = array();
     // initialisations diverses
     $this->setTestTdInOnePage(true);
     $this->setTestIsImage(true);
     $this->setTestIsDeprecated(true);
     $this->setDefaultFont(null);
     // initialisation du parsing
     $this->parsing = new parsingHTML($this->encoding);
     $this->sub_html = null;
     $this->sub_part = false;
     // initialisation des marges
     if (!is_array($marges)) {
         $marges = array($marges, $marges, $marges, $marges);
     }
     $this->setDefaultMargins($marges[0], $marges[1], $marges[2], $marges[3]);
     $this->setMargins();
     $this->marges = array();
     // initialisation des champs de formulaire
     $this->lstChamps = array();
 }
开发者ID:bosokpp1,项目名称:cipaganti-rentcar,代码行数:48,代码来源:html2pdf.class.php


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