码迷,mamicode.com
首页 > Web开发 > 详细

PHP创建桌面快捷方式实例

时间:2014-07-16 19:53:24      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   文件   

要利用php创建桌面快捷方式我们需要借助于header,InternetShortcut及一些我看不懂的代码。

方法:新建一个php文件,然后把下面的代码扔进去,保存为比如shortcut.php,放在网站跟目录,代码如下:

$shortCut = "[InternetShortcut]  
URL=http://www.baidu.com  
IDList=  
[{000214A0-0000-0000-C000-000000000046}]  
Prop3=19,2  
";  
Header("Content-type: application/octet-stream");  
header("Content-Disposition: attachment; filename=baidu.url;");  
echo $shortCut; 

 

实例:

  header("Content-type: text/html; charset=utf-8");
  $url = ‘http://php.net/manual/zh/function.get-meta-tags.php‘;
  $metas = get_meta_tags($url);
  $kws_arr = array_filter(array_map(‘trim‘, explode(‘,‘,$metas[‘keywords‘])));
  $filename = empty($kws_arr)?‘收藏‘:$kws_arr[0];
  //print_r($metas);
  $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; 

 

PHP创建桌面快捷方式实例,布布扣,bubuko.com

PHP创建桌面快捷方式实例

标签:style   blog   http   color   strong   文件   

原文地址:http://www.cnblogs.com/phpfensi/p/3837154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!