本文将介绍使用PHP生成网页桌面快捷方式的代码,并添加图标及解决不同浏览器保存出现的乱码问题。
我们访问网站时,如果网站的内容很有吸引,一般我们都会使用浏览器的收藏夹功能,收藏此网站。
在浏览器收藏的网页,需要打开浏览器,再从收藏夹选定访问。
如果可以在桌面直接进入到网站,这样可以为用户访问提供便利。
我们可以使用php创建网页的快捷入口文件,保存到用户桌面,方便用户快速访问。
生成代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php $filename = '破晓领域.url' ; $url = 'http://fdipzone.com/' ; $icon = 'http://fdipzone.com/favicon.ico' ; createShortCut( $filename , $url , $icon ); /** * 创建保存为桌面代码 * @param String $filename 保存的文件名 * @param String $url 访问的连接 * @param String $icon 图标路径 */ function createShortCut( $filename , $url , $icon = '' ){ // 创建基本代码 $shortCut = "[InternetShortcut]\r\nIDList=[{000214A0-0000-0000-C000-000000000046}]\r\nProp3=19,2\r\n" ; $shortCut .= "URL=" . $url . "\r\n" ; if ( $icon ){ $shortCut .= "IconFile=" . $icon . "" ; } header( "content-type:application/octet-stream" ); // 获取用户浏览器 $user_agent = $_SERVER [ 'HTTP_USER_AGENT' ]; $encode_filename = rawurlencode( $filename ); // 不同浏览器使用不同编码输出 if (preg_match( "/MSIE/" , $user_agent )){ header( 'content-disposition:attachment; filename="' . $encode_filename . '"' ); } else if (preg_match( "/Firefox/" , $user_agent )){ header( "content-disposition:attachment; filename*=\"utf8''" . $filename . '"' ); } else { header( 'content-disposition:attachment; filename="' . $filename . '"' ); } echo $shortCut ; } ?> |
下载保存到桌面
保存到桌面
在桌面保存为*.url后,点击就能自动打开浏览器并访问网站内容了。
破晓领域.url文件内容如下:
1
2
3
4
5
|
[InternetShortcut] IDList=[{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 URL=http: //fdipzone.com/ IconFile=http: //fdipzone.com/favicon.ico |
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://blog.csdn.net/fdipzone/article/details/50423613