用PHP写一个下载页面到桌面的快捷方式的代码 网站打开后显示下面问题,请问怎么解决 5
警告:不能更改头信息-头已经发出的(输出开始在D:\wwwroot的\dcinchina\wwwroot的\CSS\indexurl.php:2)ð:\wwwr...
警告:不能更改头信息-头已经发出的(输出开始在D:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php:2)ð:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php上线20
警告:不能更改头信息-头已经发出的(输出开始在D:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php:2)在D:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php上线22 展开
警告:不能更改头信息-头已经发出的(输出开始在D:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php:2)在D:\ wwwroot的\ dcinchina \ wwwroot的\ CSS \ indexurl.php上线22 展开
2个回答
2012-11-16 · 知道合伙人软件行家
关注
展开全部
你要写一个单独的页面来创建快捷方式,我估计你在这之前就有内容在页面上输出了,所以抱着个错
a.php
----------------------------------
$url = $_GET['url'];
$filename = urldecode($_GET['name']);
$filename = iconv('utf-8','GBk',$filename);//字符集转换
if (!$url || !$filename) exit();
$Shortcut = "[InternetShortcut]
URL={$url}
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename={$filename}.url;");
echo $Shortcut;
生成的时候做个超链接
<a href="a.php?url=网页地址&name=快捷方式名称">快捷方式</a>
a.php
----------------------------------
$url = $_GET['url'];
$filename = urldecode($_GET['name']);
$filename = iconv('utf-8','GBk',$filename);//字符集转换
if (!$url || !$filename) exit();
$Shortcut = "[InternetShortcut]
URL={$url}
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename={$filename}.url;");
echo $Shortcut;
生成的时候做个超链接
<a href="a.php?url=网页地址&name=快捷方式名称">快捷方式</a>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询