无为清净楼资源网 Design By www.qnjia.com
复制代码 代码如下:
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设置页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'XX公司产品名录');
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
$conn = mysql_connect("localhost", "root", ""); //连接数据库
mysql_select_db("product", $conn); //执行SQL
$query_rs_prod = "SELECT * FROM product ORDER BY prod_id";
$rs_prod = mysql_query($query_rs_prod, $conn) or die(mysql_error());
$row_rs_prod = mysql_fetch_assoc($rs_prod);
$totalRows_rs_prod = mysql_num_rows($rs_prod);
$pdf=new PDF(); //创建新的FPDF对象
$pdf->AddGBFont(); //设置中文字体
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('GB','',10); //设置字体样式
$header=array('产品编号','产品名称','产品类型','产品单价'); //设置表头
$width=array(20,80,40,20); //设置每列宽度
for($i=0;$i<count($header);$i++) //循环输出表头
$pdf->Cell($width[$i],6,$header[$i],1);
$pdf->Ln();
do //循环输出表体
{
$pdf->Cell($width[0],6,$row_rs_prod['prod_id'],1);
$pdf->Cell($width[1],6,$row_rs_prod['prod_name'],1);
$pdf->Cell($width[2],6,$row_rs_prod['prod_type'],1);
$pdf->Cell($width[3],6,$row_rs_prod['prod_price'],1);
$pdf->Ln();
} while ($row_rs_prod = mysql_fetch_assoc($rs_prod));
$pdf->Output("product.pdf", true); //下载PDF文件
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'Hello World!'); //增加一个单元格
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Image('sight.jpg',20,20,0,0); //增加一张图片,文件名为sight.jpg
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF(‘P', ‘mm', ‘A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(60,10,'Hello World!',1); //增加一个单元格 边框为1
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Arial','',14); //设置字体样式
$header=array('Name','Age','Sex','Salary'); //设置表头
$data=array(); //设置表体
$data[0] = array('Simon','24','Male','5,000.00');
$data[1] = array('Elaine','25','Female','6,000.00');
$data[2] = array('Susan','25','Female','7,000.00');
$data[3] = array('David','26','Male','8,000.00');
$width=array(40,40,40,40); //设置每列宽度
for($i=0;$i<count($header);$i++) //循环输出表头
$pdf->Cell($width[$i],6,$header[$i],1);
$pdf->Ln();
foreach($data as $row) //循环输出表体
{
$pdf->Cell($width[0],6,$row[0],1);
$pdf->Cell($width[1],6,$row[1],1);
$pdf->Cell($width[2],6,$row[2],1);
$pdf->Cell($width[3],6,$row[3],1);
$pdf->Ln();
}
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'你好,FPDF'); //增加一个单元格并输出中文
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设定页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'FPDF中文测试');
$this->Ln(20);
}
function Footer() //设定页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
$pdf=new PDF(); //创建PDF文档
$pdf->AddGBFont();
$pdf->Open();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('GB','I',20);
$pdf->Cell(0,10,'你好,FPDF'); //输出一段中文
$pdf->Output();
?>
复制代码 代码如下:
<?php
$conn = mysql_connect("localhost", "root", ""); //连接数据库
$colname_rs_article = $_GET['id']; //获取参数id
mysql_select_db("cms", $conn); //执行SQL
$query_rs_article = sprintf("SELECT * FROM articles WHERE article_id = %s", $colname_rs_article);
$rs_article = mysql_query($query_rs_article, $conn) or die(mysql_error());
$row_rs_article = mysql_fetch_assoc($rs_article);
$totalRows_rs_article = mysql_num_rows($rs_article);
function conv($Text) //对返回文本进行处理
{
$Text=htmlspecialchars($Text); //转换HTML关键字符
$Text=nl2br($Text); //转换换行符
return $Text;
}
?>
<p align="center"><B><?php echo $row_rs_article['title']; ?></B></p>
<p align="center"><font size=2><?php echo $row_rs_article['author']; ?> | <a href="showpdf.php?id=<?php echo $row_rs_article['article_id']; ?>">下载PDF文档</a></font></p>
<HR>
<p><?php echo conv($row_rs_article['content']); ?></p>
复制代码 代码如下:
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设置页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'文章系统 - XX网站');
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
//主程序开始
$conn = mysql_connect("localhost", "root", ""); //连接数据库
$colname_rs_article = $_GET['id']; //获取参数id
mysql_select_db("cms", $conn); //执行SQL
$query_rs_article = sprintf("SELECT * FROM articles WHERE article_id = %s", $colname_rs_article);
$rs_article = mysql_query($query_rs_article, $conn) or die(mysql_error());
$row_rs_article = mysql_fetch_assoc($rs_article);
$totalRows_rs_article = mysql_num_rows($rs_article);
//开始创建PDF文档
$pdf=new PDF();
$pdf->AddGBFont();
$pdf->Open();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('GB','B',20);
$pdf->Cell(0,10,$row_rs_article['title']); //输出文章标题
$pdf->Ln(); //换行
$pdf->SetFont('GB','',10);
$pdf->Cell(0,10,$row_rs_article['author']); //输出文章作者
$pdf->Ln();
$pdf->SetFont('GB','',12);
$content = $row_rs_article['content'];
while($content != "") //循环逐页将文章内容写入PDF
{
$length = strlen($content); //获取文章长度
$output = substr($content, 0, 1024); //获取本页输出内容,每1024个字符为1页
$pdf->Cell(0,10,$output); //输出文章内容
$content = substr($content, 1024, $length); //获取剩余未输出内容
$pdf->AddPage(); //换页
}
$pdf->Output($row_rs_article['title'].".pdf", true); //输出PDF文件,文件名为文章标题
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
class PDF extends FPDF
{
function Header() //设置页眉
{
$this->SetFont('Arial','B',15); //设置页眉字体
$this->Cell(80); //移动单元格
$this->Cell(30,10,'Title'); //写入页眉文字
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15); //设置页脚所在位置
$this->SetFont('Arial','I',8); //设置页脚字体
$this->Cell(0,10,'Page - '.$this->PageNo()); //输出当前页码作为页脚内容
}
}
$pdf=new PDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'Hello World!'); //增加一个单元格
$pdf->Output(); //输出PDF到浏览器
?>
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设置页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'XX公司产品名录');
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
$conn = mysql_connect("localhost", "root", ""); //连接数据库
mysql_select_db("product", $conn); //执行SQL
$query_rs_prod = "SELECT * FROM product ORDER BY prod_id";
$rs_prod = mysql_query($query_rs_prod, $conn) or die(mysql_error());
$row_rs_prod = mysql_fetch_assoc($rs_prod);
$totalRows_rs_prod = mysql_num_rows($rs_prod);
$pdf=new PDF(); //创建新的FPDF对象
$pdf->AddGBFont(); //设置中文字体
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('GB','',10); //设置字体样式
$header=array('产品编号','产品名称','产品类型','产品单价'); //设置表头
$width=array(20,80,40,20); //设置每列宽度
for($i=0;$i<count($header);$i++) //循环输出表头
$pdf->Cell($width[$i],6,$header[$i],1);
$pdf->Ln();
do //循环输出表体
{
$pdf->Cell($width[0],6,$row_rs_prod['prod_id'],1);
$pdf->Cell($width[1],6,$row_rs_prod['prod_name'],1);
$pdf->Cell($width[2],6,$row_rs_prod['prod_type'],1);
$pdf->Cell($width[3],6,$row_rs_prod['prod_price'],1);
$pdf->Ln();
} while ($row_rs_prod = mysql_fetch_assoc($rs_prod));
$pdf->Output("product.pdf", true); //下载PDF文件
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'Hello World!'); //增加一个单元格
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Image('sight.jpg',20,20,0,0); //增加一张图片,文件名为sight.jpg
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF(‘P', ‘mm', ‘A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(60,10,'Hello World!',1); //增加一个单元格 边框为1
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Arial','',14); //设置字体样式
$header=array('Name','Age','Sex','Salary'); //设置表头
$data=array(); //设置表体
$data[0] = array('Simon','24','Male','5,000.00');
$data[1] = array('Elaine','25','Female','6,000.00');
$data[2] = array('Susan','25','Female','7,000.00');
$data[3] = array('David','26','Male','8,000.00');
$width=array(40,40,40,40); //设置每列宽度
for($i=0;$i<count($header);$i++) //循环输出表头
$pdf->Cell($width[$i],6,$header[$i],1);
$pdf->Ln();
foreach($data as $row) //循环输出表体
{
$pdf->Cell($width[0],6,$row[0],1);
$pdf->Cell($width[1],6,$row[1],1);
$pdf->Cell($width[2],6,$row[2],1);
$pdf->Cell($width[3],6,$row[3],1);
$pdf->Ln();
}
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
$pdf=new FPDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'你好,FPDF'); //增加一个单元格并输出中文
$pdf->Output(); //输出PDF到浏览器
?>
复制代码 代码如下:
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设定页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'FPDF中文测试');
$this->Ln(20);
}
function Footer() //设定页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
$pdf=new PDF(); //创建PDF文档
$pdf->AddGBFont();
$pdf->Open();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('GB','I',20);
$pdf->Cell(0,10,'你好,FPDF'); //输出一段中文
$pdf->Output();
?>
复制代码 代码如下:
<?php
$conn = mysql_connect("localhost", "root", ""); //连接数据库
$colname_rs_article = $_GET['id']; //获取参数id
mysql_select_db("cms", $conn); //执行SQL
$query_rs_article = sprintf("SELECT * FROM articles WHERE article_id = %s", $colname_rs_article);
$rs_article = mysql_query($query_rs_article, $conn) or die(mysql_error());
$row_rs_article = mysql_fetch_assoc($rs_article);
$totalRows_rs_article = mysql_num_rows($rs_article);
function conv($Text) //对返回文本进行处理
{
$Text=htmlspecialchars($Text); //转换HTML关键字符
$Text=nl2br($Text); //转换换行符
return $Text;
}
?>
<p align="center"><B><?php echo $row_rs_article['title']; ?></B></p>
<p align="center"><font size=2><?php echo $row_rs_article['author']; ?> | <a href="showpdf.php?id=<?php echo $row_rs_article['article_id']; ?>">下载PDF文档</a></font></p>
<HR>
<p><?php echo conv($row_rs_article['content']); ?></p>
复制代码 代码如下:
<?php
require('chinese.php');
class PDF extends PDF_Chinese
{
function Header() //设置页眉
{
$this->SetFont('GB','',10);
$this->Write(10,'文章系统 - XX网站');
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15);
$this->SetFont('GB','',10);
$this->Cell(0,10,'第'.$this->PageNo().'页');
}
}
//主程序开始
$conn = mysql_connect("localhost", "root", ""); //连接数据库
$colname_rs_article = $_GET['id']; //获取参数id
mysql_select_db("cms", $conn); //执行SQL
$query_rs_article = sprintf("SELECT * FROM articles WHERE article_id = %s", $colname_rs_article);
$rs_article = mysql_query($query_rs_article, $conn) or die(mysql_error());
$row_rs_article = mysql_fetch_assoc($rs_article);
$totalRows_rs_article = mysql_num_rows($rs_article);
//开始创建PDF文档
$pdf=new PDF();
$pdf->AddGBFont();
$pdf->Open();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('GB','B',20);
$pdf->Cell(0,10,$row_rs_article['title']); //输出文章标题
$pdf->Ln(); //换行
$pdf->SetFont('GB','',10);
$pdf->Cell(0,10,$row_rs_article['author']); //输出文章作者
$pdf->Ln();
$pdf->SetFont('GB','',12);
$content = $row_rs_article['content'];
while($content != "") //循环逐页将文章内容写入PDF
{
$length = strlen($content); //获取文章长度
$output = substr($content, 0, 1024); //获取本页输出内容,每1024个字符为1页
$pdf->Cell(0,10,$output); //输出文章内容
$content = substr($content, 1024, $length); //获取剩余未输出内容
$pdf->AddPage(); //换页
}
$pdf->Output($row_rs_article['title'].".pdf", true); //输出PDF文件,文件名为文章标题
?>
复制代码 代码如下:
<?php
define('FPDF_FONTPATH','font/'); //定义font文件夹所在路径
require_once('fpdf/fpdf.php'); //包含fpdf类库文件
class PDF extends FPDF
{
function Header() //设置页眉
{
$this->SetFont('Arial','B',15); //设置页眉字体
$this->Cell(80); //移动单元格
$this->Cell(30,10,'Title'); //写入页眉文字
$this->Ln(20); //换行
}
function Footer() //设置页脚
{
$this->SetY(-15); //设置页脚所在位置
$this->SetFont('Arial','I',8); //设置页脚字体
$this->Cell(0,10,'Page - '.$this->PageNo()); //输出当前页码作为页脚内容
}
}
$pdf=new PDF('P', 'mm', 'A4'); //创建新的FPDF对象,竖向放纸,单位为毫米,纸张大小A4
$pdf->Open(); //开始创建PDF
$pdf->AddPage(); //增加一页
$pdf->SetFont('Courier','I',20); //设置字体样式
$pdf->Cell(0,0,'Hello World!'); //增加一个单元格
$pdf->Output(); //输出PDF到浏览器
?>
标签:
php,FPDF
无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 黄乙玲1988-无稳定的爱心肝乱糟糟[日本东芝1M版][WAV+CUE]
- 群星《我们的歌第六季 第3期》[320K/MP3][70.68MB]
- 群星《我们的歌第六季 第3期》[FLAC/分轨][369.48MB]
- 群星《燃!沙排少女 影视原声带》[320K/MP3][175.61MB]
- 乱斗海盗瞎6胜卡组推荐一览 深暗领域乱斗海盗瞎卡组分享
- 炉石传说乱斗6胜卡组分享一览 深暗领域乱斗6胜卡组代码推荐
- 炉石传说乱斗本周卡组合集 乱斗模式卡组最新推荐
- 佟妍.2015-七窍玲珑心【万马旦】【WAV+CUE】
- 叶振棠陈晓慧.1986-龙的心·俘虏你(2006复黑限量版)【永恒】【WAV+CUE】
- 陈慧琳.1998-爱我不爱(国)【福茂】【WAV+CUE】
- 咪咕快游豪礼放送,百元京东卡、海量欢乐豆就在咪咕咪粉节!
- 双11百吋大屏焕新“热”,海信AI画质电视成最大赢家
- 海信电视E8N Ultra:真正的百吋,不止是大!
- 曾庆瑜1990-曾庆瑜历年精选[派森][WAV+CUE]
- 叶玉卿1999-深情之选[飞图][WAV+CUE]