本文整理汇总了PHP中PDF::Header方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF::Header方法的具体用法?PHP PDF::Header怎么用?PHP PDF::Header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDF
的用法示例。
在下文中一共展示了PDF::Header方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
}
$sql = "" . "SELECT m.pur_ret_master_id,\n" . " DATE_FORMAT(m.pur_ret_date, '%d-%b-%y') pur_ret_date,\n" . " m.billno,\n" . " p.party_name\n" . " FROM purchase_return_master m\n" . " INNER JOIN purchase_return_detail d ON d.pur_ret_master_id = m.pur_ret_master_id\n" . " LEFT OUTER JOIN party p ON p.party_code = m.party_code\n" . " WHERE m.company_ref_id = {$_SESSION['company_id']}\n" . $where . "ORDER BY m.pur_ret_date, p.party_name";
//dump($sql);
$result = $mysqli->query($sql);
$ddata = array();
while ($row = $result->fetch_assoc()) {
$ddata[] = $row;
}
$result->close();
$first = true;
foreach ($ddata as $d) {
$partyName = $d['party_name'];
$date = $d['pur_ret_date'];
$billNo = $d['billno'];
if ($first === false) {
$pdf->Header();
}
$first = false;
$pdf->printHeader();
$sql = "" . "SELECT CONCAT(im.cno, IFNULL(concat(' -- ', im.manufacturer_no), ''), ' -- ', im.description) item,\n" . " d.pr_qty,\n" . " d.pr_rate,\n" . " (d.pr_qty * d.pr_rate) amt\n" . " FROM purchase_return_detail d\n" . " INNER JOIN item_master im ON im.i_code = d.i_code\n" . " INNER JOIN item_category ic ON ic.cat_id = im.cat_id\n" . " WHERE d.pur_ret_master_id = {$d['pur_ret_master_id']}";
$result = $mysqli->query($sql);
$data = array();
$count = 1;
$total = array();
$total['qty'] = (double) 0;
$total['amt'] = (double) 0;
while ($row = $result->fetch_assoc()) {
$row['sno'] = $count++;
$total['qty'] += $row['pr_qty'];
$total['amt'] += $row['amt'];
$row['pr_qty'] = number_format($row['pr_qty']);
示例2: PDF
<?php
define('FPDF_FONTPATH', 'font/');
require_once 'mysql_table.php';
include "comunes.php";
include "../conectar.php";
include "../funciones/fechas.php";
include "Numbers/Words.php";
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
if ($fondofac == "SI") {
$pdf->Header($imagenfac, 0, 0, 205, 295);
}
$codfactura = $_REQUEST["codfactura"];
$consulta = "Select * from facturas,clientes where facturas.codfactura='{$codfactura}' and facturas.codcliente=clientes.codcliente";
$resultado = mysql_query($consulta, $conexion);
$lafila = mysql_fetch_array($resultado);
$fecha = implota($lafila["fecha"]);
$dia1 = substr($fecha, 0, 2);
$mes1 = substr($fecha, 3, 2);
$mes1 = mes($mes1);
$ano1 = substr($fecha, 6, 4);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(18, 18, 239);
$pdf->SetDrawColor(0, 0, 0);
$pdf->SetLineWidth(0.2);
$pdf->SetFont('Arial', 'B', 11);
$pdf->Ln(31);
$pdf->Cell(115);
$pdf->Cell(10, 4, $codfactura, 0, 0, 'L', 0);
示例3: PDF
<?php
define('FPDF_FONTPATH', 'font/');
//require('mysql_table.php');
require_once 'fpdf.php';
include "comunes.php";
require_once OBIB_CONF . "conectar.php";
//require_once($_SERVER['DOCUMENT_ROOT']."/git/maxcodekarev/configuraciones/conectar.php");
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
// Cabecera
$pdf->Header('../images/logo.jpg', 10, 8, 33, 33);
//Nombre del Listado
$pdf->SetFillColor(255, 255, 255);
$pdf->SetFont('Arial', 'B', 16);
$pdf->SetY(40);
$pdf->SetX(0);
$pdf->MultiCell(290, 6, "Listado de Articulos", 0, "C", 0);
$pdf->Ln();
//Restauracin de colores y fuentes
$pdf->SetFillColor(224, 235, 255);
$pdf->SetTextColor(0);
$pdf->SetFont('Arial', 'B', 7);
/*
echo "</pre>";
print_r($_REQUEST);
echo "</pre>";
示例4: PDF
echo "<pre>";
print_r($_REQUEST);
echo "</pre>";
*/
define('FPDF_FONTPATH', 'font/');
require_once 'fpdf.php';
include "../conectar.php";
include "comunesfactura.php";
include "../funciones/fechas.php";
include "Numbers/Words.php";
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
// Cabecera
if ($fondofac == "SI") {
$pdf->Header('../images/Factura v3.jpg', 0, 0, 205, 295);
}
$codfactura = $_REQUEST["codfactura"];
$consulta = "Select * from facturas,clientes where facturas.codfactura='{$codfactura}' and facturas.codcliente=clientes.codcliente";
$resultado = mysql_query($consulta, $conexion);
$lafila = mysql_fetch_array($resultado);
$fecha = implota($lafila["fecha"]);
$dia1 = substr($fecha, 0, 2);
// El mes sale como numero
$mes1 = substr($fecha, 3, 2);
// si se activa este comando el mes sale con letras
//$mes1=mes($mes1);
$ano1 = substr($fecha, 6, 4);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(18, 18, 239);
$pdf->SetDrawColor(0, 0, 0);
示例5: conexion
<?php
define('FPDF_FONTPATH', 'font/');
//require('mysql_table.php');
require_once 'fpdf.php';
include "comunes.php";
require "../sys/conexion.php";
$conn = new conexion();
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
// Cabecera
$pdf->Header('./logo/logo.jpg', 10, 8, 33, 33);
//Nombre del Listado
$pdf->SetFillColor(255, 255, 255);
$pdf->SetFont('Arial', 'B', 16);
$pdf->SetY(40);
$pdf->SetX(0);
$pdf->MultiCell(290, 6, "Listado de Articulos", 0, 'C', 0);
$pdf->Ln();
//Restauracin de colores y fuentes
$pdf->SetFillColor(224, 235, 255);
$pdf->SetTextColor(0);
$pdf->SetFont('Arial', 'B', 7);
$codarticulo = $_GET["codarticulo"];
$referencia = $_GET["referencia"];
$where = "1=1";
if ($codarticulo != "") {
$where .= " AND codarticulo='" . $codarticulo . "'";
}
if ($referencia != "") {
示例6: PDF
/*
BOLETA FRANCISCO TERRONES
*/
define('FPDF_FONTPATH', 'font/');
require_once 'fpdf.php';
include "comunesfactura.php";
include "../conectar.php";
include "../funciones/fechas.php";
include "Numbers/Words.php";
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
// Cabecera
if ($fondofac == "SI") {
$pdf->Header('./logo/Factura v3.jpg', 0, 0, 205, 295);
}
$bbcodfactura = $_GET["bbcodfactura"];
$consulta = "Select * from eefacturas,clientes where eefacturas.bbcodfactura='{$bbcodfactura}' and eefacturas.codcliente=clientes.codcliente";
$resultado = mysql_query($consulta, $conexion);
$lafila = mysql_fetch_array($resultado);
$fecha = implota($lafila["fecha"]);
$dia1 = substr($fecha, 0, 2);
// El mes sale como numero
$mes1 = substr($fecha, 3, 2);
// si se activa este comando el mes sale con letras
//$mes1=mes($mes1);
$ano1 = substr($fecha, 6, 4);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(0, 0, 0);
$pdf->SetDrawColor(0, 0, 0);
示例7: Header
function Header()
{
parent::Header();
$this->SetFont('DejaVu', 'B', 8);
$titre = sprintf("Balance simple poste %s %s date %s %s", $this->from_poste, $this->to_poste, $this->from, $this->to);
$this->Cell(0, 7, $titre, 1, 0, 'C');
$this->Ln();
$this->SetFont('DejaVu', '', 6);
$this->Cell(20, 7, 'id', 'B');
$this->Cell(90, 7, 'Poste Comptable', 'B');
$this->Cell(20, 7, 'Débit', 'B', 0, 'L');
$this->Cell(20, 7, 'Crédit', 'B', 0, 'L');
$this->Cell(20, 7, 'Solde', 'B', 0, 'L');
$this->Cell(20, 7, 'D/C', 'B', 0, 'L');
$this->Ln();
}
示例8: conexion
/*
franter
*/
define('FPDF_FONTPATH', 'font/');
require_once 'fpdf.php';
include "comunesfactura.php";
require "../sys/conexion.php";
$conn = new conexion();
include "../funciones/fechas.php";
include "Numbers/Words.php";
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
// Cabecera
if (@$GLOBALS['fondofac'] == "SI") {
$pdf->Header('./logo/$GLOBALS["imagenfac"]', 0, 0, 205, 295);
}
$codfactura = @$_GET["codfactura"];
$consulta = "Select * from facturas,clientes where facturas.codfactura='{$codfactura}' and clientes.codcliente=clientes.codcliente";
$resultado = $conn->consulta($consulta);
$lafila = @$conn->fetch_array($resultado);
$fecha = implota($lafila["fecha"]);
$dia1 = substr($fecha, 0, 2);
// El mes sale como numero
$mes1 = substr($fecha, 3, 2);
// si se activa este comando el mes sale con letras
//$mes1=mes($mes1);
$ano1 = substr($fecha, 6, 4);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(0, 0, 0);
$pdf->SetDrawColor(0, 0, 0);
示例9: PDF
<?php
define('FPDF_FONTPATH', 'font/');
require_once 'mysql_table.php';
include "comunes.php";
require_once OBIB_CONF . "conectar.php";
require_once OBIB_FUN . "fechas.php";
$pdf = new PDF();
$pdf->Open();
$pdf->AddPage();
if ($fondoguia == "SI") {
$pdf->Header($imagenguia, 20, 8, 150, 0);
}
$pdf->Ln(10);
//require_once($_SERVER[DOCUMENT_ROOT]."/git/maxcodekarev/configuraciones/conectar.php");
$codalbaran = $_REQUEST["codalbaran"];
$consulta = "Select * from albaranes,clientes where albaranes.codalbaran='{$codalbaran}' and albaranes.codcliente=clientes.codcliente";
$resultado = mysql_query($consulta, $conexion);
$lafila = mysql_fetch_array($resultado);
$pdf->Cell(95);
$pdf->Cell(80, 4, "", '', 0, 'C');
$pdf->Ln(4);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(0);
$pdf->SetDrawColor(0, 0, 0);
$pdf->SetLineWidth(0.2);
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(40, 65, 'SALIDA DE MERCANCIA');
$pdf->SetX(10);
$pdf->Cell(95);
$pdf->Cell(80, 4, "", 'LRT', 0, 'L', 1);
示例10: chr
$this->Ln();
//Iva
$this->Cell($w[0], 6, $arTitulos[1], 'LR', 0, 'R');
$this->Cell($w[1], 6, number_format($oFactura->getIva(), 2, ',', '') . ' ' . chr(128), 'LR', 0, 'R');
$this->Ln();
//Total
$this->Cell($w[0], 6, $arTitulos[2], 'LR', 0, 'R');
$this->Cell($w[1], 6, number_format($oFactura->getTotal(), 2, ',', '') . ' ' . chr(128), 'LR', 0, 'R');
$this->Ln();
//Línea de cierre
$this->Cell(array_sum($w), 0, '', 'T');
}
}
//Creación del objeto de la clase heredada
$pdf = new PDF();
$pdf->Header($oFactura);
//Muestra numero de paginas en el pie
$pdf->AliasNbPages();
//Creo pagina sobre la que diburjare
$pdf->AddPage();
$pdf->NFactura($oFactura);
//Creo los datos de burban
$pdf->DatosBurban($oFactura);
$pdf->Ln(10);
//Creo el cliente
$pdf->Cliente($oCliente);
//Creo los detalles
$pdf->Detalles($arDetalles);
//Creo los totales
$pdf->Totales($oFactura);
$pdf->Output();