fpdf 1.81 php-7 运行 在 linux

fpdf 1.81 with php-7 running on linux

我开发了一个应用程序,并且在 Windows 步行(工作)上生成 PDF 非常好。昨天我想在 Linux 上测试我的应用程序,我使用 Lamp 打开 PHP 7. 当我启动 PDF 的生成时,这里是我获得的消息:

**Severity: 8192

Message: Methods with the same name as their class will not be constructors in a future version of PHP; FPDF has a deprecated constructor

Filename: php/fpdf.php

Line Num

ber: 12**

有人可以帮助我吗?

谢谢

我想我得到了你的答案...

<?php
require('fpdf/fpdf.php');

// instead of "$doc = new PDF();" use "$doc = new FPDF();"

$doc = new FPDF('P', 'mm', array(100,150));
$doc -> AddPage();
$doc -> SetFont('Arial','B', 16);
$doc -> MultiCell(40,10, 'hello word!');
$doc -> OutPut('F', 'folio.pdf');