技术宅

当前位置:首页 > 网站教程 > 其他教程

其他教程

将网站保存到桌面的php代码 使用很简单

时间:07-20 作者:
是php的代码


<?php
$Shortcut = "[InternetShortcut]
URL=http://www.xxxx.com
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
$ua = $_SERVER["HTTP

是php的代码

 

<?php

$Shortcut = "[InternetShortcut]

URL=http://www.xxxx.com

IDList=

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

Prop3=19,2

";

$ua = $_SERVER["HTTP_USER_AGENT"];

$filename = "我的网站.url";

$encoded_filename = urlencode($filename);

$encoded_filename = str_replace("+", "%20", $encoded_filename);

header('Content-Type: application/octet-stream');

if(preg_match("/MSIE/", $ua)){

header('Content-Disposition: attachment; filename="'.$encoded_filename.'"');

}else if(preg_match("/Firefox/", $ua)){

header('Content-Disposition: attachment; filename*="utf8\'\''.$filename.'"');

}else{

header('Content-Disposition: attachment; filename="'.$filename.'"');

}

echo $Shortcut;

?>

 

上面这段代码,加红的地方就是大家需要修改的地方了。

 

第一个是你的网站网址,第二个是这个快捷方式的名字。

修改起来很简单,改好后放到你网站的根目录下,然后网站主页链接到这个页面即可。