程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php中網頁添加到桌面快捷方式方法

php中網頁添加到桌面快捷方式方法

編輯:關於PHP編程

我們經常會在網站中看到可以直接把網站以快捷方式保存到自己的電腦中,然後只要點擊就可以實現進入網了,那麼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;
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved