icophp
發布時間: 2025-02-05 06:54:26
『壹』 用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
文件
熱點內容