用php 實(shí)現(xiàn)網(wǎng)址的桌面快捷方式下載,就是訪問(wèn)PHP文件的時(shí)候,實(shí)現(xiàn)下載網(wǎng)址的快捷方式,就像我們手動(dòng)在桌面創(chuàng)建一樣。
方法:新建一個(gè)PHP文檔:名字好記就行如:shortcut.php
PHP文檔中的內(nèi)容:
<?php
/* 網(wǎng) http://www.veryhuo.com */
$Shortcut = "[InternetShortcut]
URL=http://www.veryhuo.com/
IDList=
IconFile=http://www.veryhuo.com/favicon.ico
IconIndex=1
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
"; //注意修改上面的網(wǎng)址和圖標(biāo)鏈接
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=學(xué)院.url;");
echo $Shortcut;
?>
演示:http://www.veryhuo.com/plus/shortcut.php