Heim  >  Artikel  >  Backend-Entwicklung  >  php输出下载为桌面图标的例子

php输出下载为桌面图标的例子

WBOY
WBOYOriginal
2016-07-25 08:52:441724Durchsuche
  1. $Shortcut = "[InternetShortcut]
  2. URL=http://www.leduz.com/#shortcut
  3. IconFile=http://www.leduz.com/faviconbig.ico
  4. IconIndex=1
  5. IDList=
  6. [{000214A0-0000-0000-C000-000000000046}]
  7. Prop3=19,2
  8. ";
  9. Header("Content-type: application/octet-stream");
  10. header("Content-Disposition: attachment; filename=小桔灯分类信息网.url;");
  11. echo $Shortcut;
  12. ?>
复制代码

保存为php文件,点击链接后即可下载到桌面图标

注意,不同系统可能会有不显示ico图标的问题,请尝试如下代码:

  1. [DEFAULT]
  2. BASEURL=http://www.leduz.com/
  3. [InternetShortcut]
  4. URL=http://www.leduz.com/#shortcut
  5. Modified=70BF4B88E372CC0124
  6. IconFile=http://www.leduz.com/faviconbig.ico
  7. IconIndex=1
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn