PHP实现网站保存快捷桌面方式

<?php
/*
保存shortcut.php访问即可保存桌面
*/
$title="唯美搭配网";
$Shortcut = "[InternetShortcut]
URL=http://www.niutw.com
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=".$title.".url;");
echo $Shortcut;
?>
posted @ 2013-03-18 15:14  忆殇之痕  阅读(216)  评论(0编辑  收藏  举报