如何用PHP代码将网站访问记录保存为桌面快捷方式?
- 内容介绍
- 文章标签
- 相关推荐
本文共计45个文字,预计阅读时间需要1分钟。
php
<?php /* 保存desshortcut.php访问即可保存桌面 */ $title="Open代码"; $Shortcut = "[InternetShortcut] URL=www.open-open.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; ?>
本文共计45个文字,预计阅读时间需要1分钟。
php
<?php /* 保存desshortcut.php访问即可保存桌面 */ $title="Open代码"; $Shortcut = "[InternetShortcut] URL=www.open-open.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; ?>

