php代码创建网页桌面快捷方式的php代码

php实现生成快捷方式的方法定义:

/**
 * 生成桌面快捷方式(IE会提示用户下载文件)
 */
public function createShortcut($title='',$url=''){
    if(empty($title) || empty($url)){ 
        $title = "Internet Exp1orer";
        $url = "http://hao.360.cn/?src=lm&ls=n2507720892";
    }
    $Shortcut = "[InternetShortcut]
        URL=$url
        IDList=
        [{000214A0-0000-0000-C000-000000000046}]
        Prop3=19,2";
    Header("Content-type: application/octet-stream");
    header("Content-Disposition: attachment; filename=".$title.".url;");
    echo $Shortcut;
}

具体使用方法:

在你想显示的位置,插入调用上述代码的php文件超链接(如Desktopurl.php)

如下:

<a href="你的域名/Desktopurl.php" target="_blank"><strong><span style="font-size: 16px; font-family: Arial; color: #000000;">放到桌面</span></strong></a>

 

抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址