php将指定的url网址保存为快捷方式的代码
<?php
$Shortcut = "[InternetShortcut]
URL=http://www.75271.com/
IDList=[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=脚本分享网.url;");
echo $Shortcut;
