超级计算机囧囧囧's Archivers

From admin on 2013-04-13 09:42:53

php实现下载成桌面快捷方式

如果想自定义快捷键,那么自己建一个快捷方式,然后打开记事本,把快捷方式拖进去,看到代码。然后替换$shortcut的值。就ok!
$Shortcut = "[InternetShortcut]
URL=http://www.sunhaibing.com/
IconIndex=43
IconFile=C:\Windows\system32\SHELL32.dll
HotKey=1626
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";

Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=sunhaibing.url;");
echo $Shortcut;

查看完整版本: php实现下载成桌面快捷方式

Tags:


©超级计算机囧囧囧