PHP生成便于打印的网页
2015-01-24信息快讯网
要生成便于打印的网页,需要我们做哪些工作呢?这主要取决于你的网站特点,和你想要生成的版式特征,不过有一些基本处理需要完成:
1、 页宽――生成页面的宽度必须限制,要打印A4的纸,大约网页要在630像素宽。
2、 页面背景色――为了美观,很多网页使用了不同的背景色和背景图片,但是作为要打印的网页,最合适效果的还是白底黑字为好。
3、 广告条――移除页面上的广告
4、 表格的背景色――我们经常在表格中用颜色来强调信息和标题,这些也必须移除。
5、 链接――页面中的超链接也必须改变以使URL可见,例如:<a href=http://www.gbdirect.co.uk/ >GBDirect</a>应显示为GBDirect (http://www.gbdirect.co.uk/)
6、 菜单――菜单是最难被禁止的,然而如果你的页面是使用模板来构建的话,那么最简单的方法是换用便于打印的没有菜单的模板。
这些生成便于打印页面的所有方法,都是非常简单的,需要实现的时候你可以被下面的代码放到网页中:
<?
//从环境变量中得到文件的相对路径
$page=substr($SCRIPT_NAME,1);
// 显示一个图标并连接到Printer Friendly Pages
// 便于打印页面的生成程序pfp.php
?>
<a href="pfp.php?page=<?=$page?>">;
<img src="printer.gif" width="36" height="36" border="0"
alt="Click here to produce a printer friendly page">
<font face="arial, helvetica" size="2">
Printer Friendly Version
</font>
</a>
把当前页面的名称传递到pfp.php程序中,这个程序使用PHP的“file”函数把页面作为一个字符串来处理。当这个页面被载入的时候,程序就可以增加、改写或删除HTML片段。
<?
ereg('^.*/',$SCRIPT_FILENAME,$tmp);
$page_path = substr($tmp[0],0,-1);
?>
<html>
<head>
<base href="http://<? echo $HTTP_HOST ?>/">
<meta name="robots" content="no index, no follow">
<title>Printer Friendly Page</title>
</head>
<body bgcolor="white">
<font face="Arial,Helvetica">
<table border="0" cellpadding="5" cellspacing="0" width="630" >
<tr>
<td valign="top">
<?
// check if the filename for the page exists
if (!file_exists("$page.inc"))
{
echo "<strong>Error - The page <?=$page?>".
"does not exist on this site.</strong>";
}
else
{
// 得到页面的内容并把它放到一个字符串中
$fcontents = join('', file("$page.inc"));
// 忽略颜色属性,转换以'ignore'替代'color'
$fcontents = ereg_replace('color','ignore',$fcontents);
// 去除超链接中的 “_blank”
$fcontents = ereg_replace('target=\"_blank\"','',$fcontents);
// 替换</a>标记
$fcontents = ereg_replace('</a>','',$fcontents);
// 显示URL的绝对地址
$fcontents = ereg_replace('<a[^h]*href="(http://[^"]*)"[^>]*>;([^]*)',
'<strong>\\2</strong><em>(\\1)</em>',$fcontents);
// 把相对链接转为绝对链接
$fcontents = ereg_replace(
'<a[^h]*href="([^"]*)"[^>]*>([^]*)',
"<strong>\\2</strong><em>(http://$HTTP_HOST/\\1)</em>";,
$fcontents);
// 背景颜色改回白色
$fcontents = ereg_replace('<body bgignore','<body bgcolor', $fcontents);
// if any markers left restore link end element
$fcontents = ereg_replace('','</a>',$fcontents);
// 输出页面
echo $fcontents;
}
?>
</td>
</tr>
<tr>
<td align="center"><hr width="90%"></td>
</tr>
<tr>
<td align="center">
<? include("$page_path/footer.inc"); ?>
</td>
</tr>
</table>
</font>
</body>
</html>
这样便于打印的页面就生成了,希望对大家能有帮助。
(译自PHPBulider/Mark Spink)
PHP伪静态页面函数附使用方法
PHP伪静态写法附代码
php代码出现错误分析详解第1/2页
php utf-8转unicode的函数第1/2页
用PHP伪造referer突破网盘禁止外连的代码
snoopy PHP版的网络客户端提供本地下载
生成卡号php代码
生成php程序的php代码
Mysql和网页显示乱码解决方法集锦
php简单静态页生成过程
EPSON打印机 连供墨水系统 维修有哪些保养窍门第1/2页
php在线生成ico文件的代码
PHP生成月历代码
在任意字符集下正常显示网页的方法二(续)
在任意字符集下正常显示网页的方法一
php网页后退不再出现过期
个人站长制做网页常用的php代码
让你的网站首页自动选择语言转跳
几个学习PHP的网址
一个简单的MySQL数据浏览器
PHP4实际应用经验篇(5)
PHP个人网站架设连环讲(四)
用PHP+java实现自动新闻滚动窗口
PHP个人网站架设连环讲(三)
PHP个人网站架设连环讲(一)
福利彩票幸运号码自动生成器
一个从别的网站抓取信息的例子(域名查询)
层叠菜单的动态生成
php,不用COM,生成excel文件
用PHP实现WEB动态网页静态
用libtemplate实现静态网页生成
基于PHP与XML的PDF文档生成技术
用libTemplate实现静态网页的生成
用在PHP里的JS打印函数
令你的网站获得任意Google PR值的方法