输出url的快捷方式的实现方法有很多,在本文将为大家介绍下使用php是如何实现的,感兴趣的朋友可以参考下,希望对大家有所帮助
复制代码 代码如下:
/**
* internet shortcut
*
* add the following into head:
*
*
*
*/
$shortcut = '[internetshortcut]
url=http://onens.com/
idlist=
[{000214a0-0000-0000-c000-000000000046}]
prop3=19,2
';
header('content-type: application/octet-stream');
header('content-disposition: attachment; filename=onens.com.url;');
echo $shortcut;
,