使用FPDF。
require('fpdf.php');
class PDF extends FPDF{
function header()//create header of the pdf
{
$this->Image('Your Logo url', 10, 6, 90);
$this->Ln(30);
$this->SetFont('Arial', 'B', 15);
// Move to the right
$this->Cell(50);
// Title
// $this->Cell(90, 110, 'User Website Brief', 'C');
// Line break
$this->Ln(20);
}
function footer()
{
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial', 'I', 8);
// Page number
$this->Cell(0, 10, 'Page ' . $this->PageNo() . '/{nb}', 0, 0, 'C');
}
}
$pdf = new pdf();
$pdf->AliasNbPages();
$title ='Your PDF Title';
$pdf->SetTitle($title);
$pdf->SetAuthor('Your Name');
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 14);
$pdf->cell(20, 10, $YourContent);
$pdf->Output('I',"FileName");//sends PDF output to the browser
それは私があなたを支援することができますので、問題はあなたのコードを過ぎて喜ばあなたを与える場合は、ここで をFPDFをダウンロードすることができます。
あなたはPDFファイルとしてダウンしたいですか? – dinesh
はい、私はそれをpdfとしてダウンロードしたいと思っています – fourgood