将网页设置为桌面快捷方式php版

在不少的SNS类网站、论坛中,能看到一些个将网页设置为桌面快速方式的按钮,其实也不难,分享一下我扒来的代码!

此版本支持多浏览器!

<html>
<head>
    <title>将网页设置为桌面快捷方式php版 - yangjunwei.com</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
</head>
<body>
<a href='shorturl.php'>保存到桌面</a>
</body>
</html>

其中shorturl.php文件的源码如下:

<?php
    $Shortcut = "[DEFAULT]
    BASEURL=https://yangjunwei.com/
    [InternetShortcut]
    URL=https://yangjunwei.com
    IDList=
    IconFile=https://yangjunwei.com/favicon.ico
    [{000214A0-0000-0000-C000-000000000046}]
    Prop3=19,2
    ";
    header('Content-Type: application/octet-stream');
    header("Content-Disposition: attachment; filename=杨俊伟.url");
    echo $Shortcut;
?>