2010二月25
设置网页桌面快捷方式
看 开心网 有一个设为桌面图标,发现其就是下载了个网页的快捷方式在桌面上。
网上也有类似的程序,但是写法上面,只能支持IE,而不能跨浏览器。看了一下开心的HTTP请求头,原来也不是很难,上网再一搜,咱也弄个演示玩一下。呵。
<html>
<head>
<title>小小子桌面版</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
</head>
<body>
<a href='shorturl.php'>桌面版</a>
</body>
</html>
<head>
<title>小小子桌面版</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
</head>
<body>
<a href='shorturl.php'>桌面版</a>
</body>
</html>
<?php
$Shortcut = "[DEFAULT]
BASEURL=http://www.xiaoxiaozi.com/
[InternetShortcut]
URL=http://www.xiaoxiaozi.com
IDList=
IconFile=http://www.xiaoxiaozi.com/favicon.ico
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=小小子.url");
echo $Shortcut;
?>
$Shortcut = "[DEFAULT]
BASEURL=http://www.xiaoxiaozi.com/
[InternetShortcut]
URL=http://www.xiaoxiaozi.com
IDList=
IconFile=http://www.xiaoxiaozi.com/favicon.ico
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=小小子.url");
echo $Shortcut;
?>
文章作者:simaopig
本文地址:http://www.xiaoxiaozi.com/2010/02/25/1710/
版权所有 © 转载时必须以链接形式注明作者和原始出处!
这个功能对那些上网入口型网站很实用
[回复]
学习了,还是比较实用的。
[回复]
已经在使用了,感谢提供
[回复]