PHP生成.url文件

网络整理 - 08-05
    我们经常见有的网站上有将网址下载的桌面快捷方式的功能,下面这段代码即可实现。
<?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; 
    ?>