rudissaar/yii2-fpdf
最新稳定版本:v1.1.7
Composer 安装命令:
composer require rudissaar/yii2-fpdf
包简介
FPDF plugin and wrapper for Yii2 framework.
README 文档
README
FPDF plugin and wrapper for Yii2 framework.
Getting Started
FPDF
FPDF is copy of FPDF class and it has all methods and properties like original one.
To include FPDF class add following line to your PHP file:
use rudissaar\fpdf\FPDF;
After that you can use FPDF class anywhere in your file or inherit another class from it.
Basic usage
<?php
...
use rudissaar\fpdf\FPDF;
...
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 15);
$pdf->Cell(40, 10, 'Hello World');
$pdf->Output('F', '/tmp/hello.pdf');
...
FPDFPlus (enchanted class)
This package comes with extra methods that can be very useful for you.
View source: FPDFPlus
Basic usage
<?php
...
use rudissaar\fpdf\FPDFPlus;
...
$pdf = new FPDFPlus();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 15);
$pdf->WriteLnEncoded(10, 'Apple: £10');
$pdf->Output('F', '/tmp/price.pdf');
...
Reference Manual
统计信息
- 总下载量: 27.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2017-09-12