在不少的SNS類網站、論壇中,能看到一些個將網頁設置為桌面快速方式的按鈕!
此版本支持多浏覽器!
<html>
<head>
<title>將網頁設置為桌面快捷方式php版 - 52itbc.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<a href='shorturl.php'>保存到桌面</a>
</body>
</html>
其中shorturl.php文件的源碼如下:
<?php
$Shortcut = "[DEFAULT]
BASEURL=http:///
[InternetShortcut]
URL=http://
IDList=
IconFile=http:///favicon.ico
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=吾愛編程.url");
echo $Shortcut;
?>
*