我們經常會在網站中看到可以直接把網站以快捷方式保存到自己的電腦中,然後只要點擊就可以實現進入網了,那麼php中怎麼把網頁添加到桌面快捷方式呢。
功能簡單,直接上代碼。
代碼如下 復制代碼<a href='shortcuts.php'>火星時代IT開發</a>
shortcuts.php 代碼
$Shortcut = "
[InternetShortcut]
URL=http://www.bKjia.c0m
IDList=IconFile=http://www.bKjia.c0m/favicon.ico
Prop3=19,2";
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=111cn.url");
echo $Shortcut;
下面還提供一種方法
代碼如下 復制代碼<?php
$Shortcut = "[InternetShortcut]
URL=http://www.bKjia.c0m/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=11cn.url;");
echo $Shortcut;
?>