PHP生成.url文件 网站常用的保存到桌面功能

提示用户是否在桌面创建一个本站的快捷方式的代码;

演示:http://www.zishu.cn/attachments/month_1007/url.php

<?php
$content = '[InternetShortcut]
URL=http://www.zishu.cn
IDList=[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
';
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=子鼠.url;");
echo $content;
?>

原文地址:https://www.cnblogs.com/cnteam/p/1788840.html