当前位置:Gxlcms > PHP教程 > PHP实现将网站访问保存成快捷桌面方式

PHP实现将网站访问保存成快捷桌面方式

时间:2021-07-01 10:21:17 帮助过:16人阅读

  1. /*
  2. 保存desshortcut.php访问即可保存桌面
  3. */
  4. $title="Open代码";
  5. $Shortcut = "[InternetShortcut]
  6. URL=http://www.open-open.com
  7. IDList=
  8. [{000214A0-0000-0000-C000-000000000046}]
  9. Prop3=19,2";
  10. Header("Content-type: application/octet-stream");
  11. header("Content-Disposition: attachment; filename=".$title.".url;");
  12. echo $Shortcut;
  13. ?>

PHP

人气教程排行