php 创建快捷方式到桌边

 1、将下面的代码保存为文件,url.php。记得修改第二行及第四行内的url名称和网址。

<?php
$Shortcut = "[InternetShortcut]
URL=http://www.ablanxue.com/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=QQ1111站.url;");
echo $Shortcut;
?>

2、将该文件上传至网站根目录。
3、在网站根目录上传Favicon.ico文件,有这个文件,保存的链接才会有图标显示。
4、在网站调用页面添加如下代码即可。

<a href='http://www.ablanxue.com/url.php'>桌面图标</a>

posted @ 2014-12-25 16:27  eterwei  阅读(160)  评论(0编辑  收藏  举报