当前位置 : 主页 > 网络编程 > PHP >

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

来源:互联网 收集:自由互联 发布时间:2021-07-03
?php/*保存desshortcut.php访问即可保存桌面*/$title="Open代码";$Shortcut = "[InternetShortcut]URL=http://www.open-open.comIDList=[{000214A0-0000-0000-C000-000000000046}]Prop3=19,2";Header("Content-type: application/octet-stream");
<?php
/*
保存desshortcut.php访问即可保存桌面
*/
$title="Open代码";
$Shortcut = "[InternetShortcut]
URL=http://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;
?>
网友评论