把网站保存到桌面带ICO图标的php代码
把网站保存到桌面带ICO图标的php代码
代码如下
<?php
//InfoTip=注释
//IconFile=图标文件的路径
//IconIndex=选择要使用文件中的第几个图标
$Shortcut = "[InternetShortcut]
URL=http://www.reyu123.com/
IDList=IconIndex=1
IconFile=http://www.reyu123.com/favicon.ico
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=热语网.url;");
echo $Shortcut;
?>