介绍下使用PHP实现网站快捷方式的保存方法。
PHP怎么实现网站保存快捷方式呢?下面是一段PHP代码,下面这段代码,可以PHP实现网站保存快捷方式,以便用户随时浏览。
<?php
/**
* 网站保存为快捷方式
* 编辑:www.jbxue.com
*/
$Shortcut = "[InternetShortcut]
URL=http://www.jbxue.com/
IDList = [{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=jbxue.com.url;");
echo $Shortcut;
?>
/**
* 网站保存为快捷方式
* 编辑:www.jbxue.com
*/
$Shortcut = "[InternetShortcut]
URL=http://www.jbxue.com/
IDList = [{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=jbxue.com.url;");
echo $Shortcut;
?>