本文整理汇总了PHP中FPDI::wordWrap方法的典型用法代码示例。如果您正苦于以下问题:PHP FPDI::wordWrap方法的具体用法?PHP FPDI::wordWrap怎么用?PHP FPDI::wordWrap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FPDI
的用法示例。
在下文中一共展示了FPDI::wordWrap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$row["QUIEBRA"] = $row["QUIEBRA"]." (".$row["PERQUIEBRA"].")";
// Traigo los registros del detalle para saber cuantas hojas voy a generar..
$params = array(":contrato" => $_REQUEST["id"]);
$sql = getSqlDetalle($row, $sqlFilas);
$stmt = DBExecSql($conn, $sql, $params);
// ******* INICIO - Armado del reporte.. *******
$pdf = new FPDI("L", "mm", array(232, 280));
$pdf->setSourceFile($_SERVER["DOCUMENT_ROOT"]."/modules/estado_cuenta/templates/estado_cuenta.pdf");
$pdf->SetFont("Arial", "", 7);
$textoLeyendaFinal = getLeyendaFinal($_REQUEST["id"]);
$pdf->wordWrap($textoLeyendaFinal, 196);
$textoLeyendaFinal = explode("\n", $textoLeyendaFinal);
$fila = 1;
$pagina = 1;
while ($rowDetalle = DBGetQuery($stmt, 1, false)) {
if ($fila == 1)
setDatosEstaticos($pdf, $row, $pagina, $entidad, $vendedor, $ejecutivo, $estudio, $gestor);
// Muestro el detalle..
$pdf->SetFont("Arial", "", 7);
$pdf->SetX(0);
$pdf->SetY(79 + ($fila * 4));
$pdf->Cell(0.2);
$pdf->Cell(13, 0, $rowDetalle["PERIODO"]);