Home  >  Article  >  php教程  >  将当前网页发送到桌面的代码

将当前网页发送到桌面的代码

WBOY
WBOYOriginal
2016-06-13 11:36:101879browse

 把网页发送到桌面php语言的代码。

首先我们先做准备工作,要先上传自己网站的ico图标文件,这样发送到桌面的时候才会有图标显示。

然后新建一个以shorturl命名的php文件把下面的代码放上去

$Shortcut = ”[InternetShortcut]

URL=http://您的域名/

IDList=

[{000214A0-0000-0000-C000-000000000046}]

Prop3=19,2

“;

Header(“Content-type: application/octet-stream”);

header(“Content-Disposition: attachment; filename=文件名称.url;”);

echo $Shortcut;

?>

然后保存后传到网站的根目录,

在网站调用页面添加如下代码即可。

1

发送到桌面

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn