欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-04 17:13:54
...
  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