冰风飒的博客

PHP生成网站快捷方式

代码如下: [php] <?php $Shortcut = "[InternetShortcut] URL=http://bingfengsa.com IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 "; $ua = $_SERVER["HTTP_USER_AGENT"]; $filename = "bingfengsa.com.url"; $encoded_filename = urlencode($filename); $encoded_filename = str_replace("+", "%20", $encoded_filename); header('Content-Type: application/octet-stream'); if(preg_match("/MSIE/", $ua)){ header('Content-Disposition: attachment; filename="'.$encoded_filename.'"'); }else if(preg_match("/Firefox/", $ua)){ header('Content-Disposition: attachment; filename*="utf8\'\''.$filename.'"'); }else{ header('Content-Disposition: attachment; filename="'.$filename.'"'); } echo $Shortcut; [/php]

posted on 2012-06-04 09:52  冰风飒  阅读(368)  评论(0编辑  收藏  举报

导航