php 代码 创建网站桌面快捷方式

php相关 / 2011年01月27日 13时08分 / 14653人浏览
<?php //$url = $_GET['url']; //$filename = urldecode($_GET['name']); $url = "your site"; $filename = "site 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; ?>