復制代碼 代碼如下:
<?php
$Shortcut = "[InternetShortcut]
URL=http://www.your_url.com/
IconFile=http://www.your_icon.com/
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上,然後訪問即可生成一個鏈接的快捷方式。