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

php中网页添加到桌面快捷方式方法

程序员文章站 2023-12-29 08:24:22
...
我们经常会在网站中看到可以直接把网站以快捷方式保存到自己的电脑中,然后只要点击就可以实现进入网了,那么php中怎么把网页添加到桌面快捷方式呢。

功能简单,直接上代码。

代码如下 复制代码

火星时代IT开发


shortcuts.php 代码

代码如下 复制代码

$Shortcut = "
[InternetShortcut]
URL=http://www.phprm.com
IDList=IconFile=http://www.phprm.com/favicon.ico
Prop3=19,2";
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=111cn.url");
echo $Shortcut;

下面还提供一种方法

代码如下 复制代码

$Shortcut = "[InternetShortcut]
URL=http://www.phprm.com/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=11cn.url;");
echo $Shortcut;
?>



永久链接:

转载随意!带上文章地址吧。

上一篇:

下一篇: