将介绍使用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
34
35
36
37
38
39
40
41
|
<?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后,点击就能自动打开浏览器并访问网站内容了。
第二种情况:PHP实现网站保存快捷桌面方式
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/*
保存shortcut.php访问即可保存桌面
*/
$title = "服务器之家" ;
$Shortcut = "[InternetShortcut]
URL=https: //www.zzvips.com
IDList= <br>[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header( "Content-type: application/octet-stream" );
header( "Content-Disposition: attachment; filename=" . $title . ".url;" );
echo $Shortcut ;
?>
|
第三种情况:PHP生成网站桌面快捷方式
PHP生成桌面快捷方式就是这么的简单,大家生成的时候改下你要生成的网站即可。
dianji.html代码:
<a href="a.php?url=www.zzvips.com&name=服务器之家">生成左面快捷方式</a>
shengcheng.php代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
//网站生存左面快捷方式---功能
$url = $_GET [ 'url' ];
$filename = urldecode( $_GET [ 'name' ]);
$filename = iconv( 'GBk' , 'utf-8' , $filename ); //字符集转换(没有需要转的就不转)
if (! $url || ! $filename ) exit ();
$Shortcut = "[InternetShortcut]
URL={ $url }
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
header( "Content-type: application/octet-stream" );
header( "Content-Disposition: attachment; filename={$filename}.url;" );
echo $Shortcut ;
?>
|
希望本文所述对大家学习php程序设计有所帮助。