[转载]PHP生成桌快捷方式代码 实现一键登录
(2011-08-03 23:24:57)
标签:
转载 |
分类: 草根新闻 |
你懂的
在作《范文站fanwenzhan.com》的过程中,有个文章阅读页的“下载本文”功能,所要实现的功能是点按钮便下载一个指向本文地址的快捷Internet图标保存到用户电脑里面。
用以下代码即可实现:
Shortcut.php
<?php
$url = $_GET['url'];
$shortname= $_GET['shortname'];
$Shortcut = "[InternetShortcut]
URL=$url?down
IDList=
IconIndex=43
IconFile=C:Windowssystem32SHELL32.dll
HotKey=1626
[{000214A0-0000-0000-C000-000000000046}]Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment;
filename=$shortname.url;");
echo $Shortcut;
exit();
?>
调用方式:
<a href="/shortcut.php?url=http://www.fanwenzhan.com/&shortname=范文站">下载本文</a>
演示地址:http://www.fanwenzhan.com/fanwen/dailihetong/02943.shtml