使用php实现下载生成某链接快捷方式的解决方法

网络编程 2021-07-05 09:49www.168986.cn编程入门
点击一个页面中的某个按钮或者链接,生成某链接的快捷方式下载到本地,如果使用php语言来实现,网上比较多的方法如下
代码如下:

<?php 
$Shortcut = "[InterShortcut] 
URL=http://.your_url./ 
IconFile=http://.your_icon./ 
IconIndex=1 
IDList= 
[{000214A0-0000-0000-C000-000000000046}] 
Prop3=19,2 
"; 
header("Content-type: application/octet-stream"); 
header("Content-Disposition: attachment; filename=链接文字.url;"); 
echo $Shortcut; 
?>

,IconFile这个图标没有生效;,这个是可以支持中文的,如果不支持中文的话,可以加上一行代码
代码如下:

header('Content-Type: text/html; charset=utf-8'); 

将该php文件放到服务器apache上,然后访问即可生成一个链接的快捷方式。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by