这段代码是下载URL快捷方式到本地的,<?php
$Shortcut = "[InternetShortcut]
URL=www.baidu.com
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=测试.url;");
echo $Shortcut;
?>www.baidu.com的地方怎么能获取当前链接的浏览器窗口的URL我试了 'http://'.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']; 以后不行啊大家帮帮忙吧