2017 © Pedro Peláez
 

yii2-extension yii2-fpdf

FPDF plugin and wrapper for Yii2 framework.

image

rudissaar/yii2-fpdf

FPDF plugin and wrapper for Yii2 framework.

  • Tuesday, January 16, 2018
  • by rudissaar
  • Repository
  • 1 Watchers
  • 1 Stars
  • 226 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 26 % Grown

The README.md

yii2-fpdf

FPDF plugin and wrapper for Yii2 framework., (*1)

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:, (*2)

use rudissaar\fpdf\FPDF;, (*3)

After that you can use FPDF class anywhere in your file or inherit another class from it., (*4)

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., (*5)

View source: FPDFPlus, (*6)

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

http://www.fpdf.org/en/doc/index.php, (*7)

The Versions

16/01 2018

dev-master

9999999-dev

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

16/01 2018

v1.1.7

1.1.7.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

29/12 2017

v1.1.6

1.1.6.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

06/12 2017

v1.1.5

1.1.5.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

06/12 2017

v1.1.4

1.1.4.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

20/11 2017

v1.1.3

1.1.3.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

12/09 2017

v1.1.0

1.1.0.0

FPDF plugin and wrapper for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar

12/09 2017

v1.0.2

1.0.2.0

FPDF plugin for Yii2 framework.

  Sources   Download

BSD-3-Clause

The Requires

 

by Kevin Rudissaar