萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> 用php創建網頁桌面快捷方式的代碼

用php創建網頁桌面快捷方式的代碼

 新建一個PHP文檔:名字好記就行如:shortcut.php
PHP文檔中的內容:
代碼

<?php
$Shortcut = "[InternetShortcut]
URL=http://www.hake.cc/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=腳本之家.url;");
echo $Shortcut;
?>
要想出現圖標請先確保網站根目錄中有 favicon.ico 文件

copyright © 萬盛學電腦網 all rights reserved