首页
开发手册
应用中心
工具
用户中心
FoundPHP 框架下新手制作PDF文件
中文简体
中文简体
English
上一篇
下一篇
FoundPHP 融入TCPDF 类制作一款简单应用方便的插件,为了继承系统的优势同样提供PHP 5.4-php7最新版本的兼容,无需对稳定性进行担忧。 ![](data/files/edit/20/03/19/200319_18255672.png) 官方网站:[https://www.tcpdf.org](http://www.tcpdf.org "https://www.tcpdf.org") 示例代码:[https://tcpdf.org/examples](https://tcpdf.org/examples "https://tcpdf.org/examples") 下载代码:[https://github.com/tecnickcom/TCPDF](https://github.com/tecnickcom/TCPDF "https://github.com/tecnickcom/TCPDF") SVN代码:[https://github.com/tecnickcom/TCPDF.git](https://github.com/tecnickcom/TCPDF.git "https://github.com/tecnickcom/TCPDF.git") #### 快速入手生成PDF ```php html_page(array('html'=>'
FoundPHP
Framework PDF Class!')); //打印显示 $filename = 'foundphp'; //文件名 $show = 0; //0表示显示,1表示下载 $pdf->p($filename,$show); ?> ``` 实现效果: ![](data/files/edit/20/03/19/200319_15403306.jpg) 简单实现了pdf输出,那如何制作更丰富复杂的pdf请看下一章节。