欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php创建桌面快捷方式实现方法

程序员文章站 2022-07-10 10:54:28
第一种情况:php生成网页桌面快捷方式 将介绍使用php生成网页桌面快捷方式的代码,并添加图标及解决不同浏览器保存出现的乱码问题。 我们访问网站时,如果网站的内容很有吸...

第一种情况:php生成网页桌面快捷方式

将介绍使用php生成网页桌面快捷方式的代码,并添加图标及解决不同浏览器保存出现的乱码问题。

我们访问网站时,如果网站的内容很有吸引,一般我们都会使用浏览器的收藏夹功能,收藏此网站。
在浏览器收藏的网页,需要打开浏览器,再从收藏夹选定访问。

如果可以在桌面直接进入到网站,这样可以为用户访问提供便利。
我们可以使用php创建网页的快捷入口文件,保存到用户桌面,方便用户快速访问。

生成代码如下:

<?php
$filename = '破晓领域.url';
$url = 'http://fdipzone.com/';
$icon = 'http://fdipzone.com/favicon.ico';

createshortcut($filename, $url, $icon);

/**
 * 创建保存为桌面代码
 * @param string $filename 保存的文件名
 * @param string $url   访问的连接
 * @param string $icon   图标路径
 */
function createshortcut($filename, $url, $icon=''){

  // 创建基本代码
  $shortcut = "[internetshortcut]\r\nidlist=[{000214a0-0000-0000-c000-000000000046}]\r\nprop3=19,2\r\n";
  $shortcut .= "url=".$url."\r\n";
  if($icon){
    $shortcut .= "iconfile=".$icon."";
  }

  header("content-type:application/octet-stream");

  // 获取用户浏览器
  $user_agent = $_server['http_user_agent'];
  $encode_filename = rawurlencode($filename);

  // 不同浏览器使用不同编码输出
  if(preg_match("/msie/", $user_agent)){
    header('content-disposition:attachment; filename="'.$encode_filename.'"');
  }else if(preg_match("/firefox/", $user_agent)){
    header("content-disposition:attachment; filename*=\"utf8''".$filename.'"');
  }else{
    header('content-disposition:attachment; filename="'.$filename.'"');
  }

  echo $shortcut;

}
?>

下载保存到桌面

php创建桌面快捷方式实现方法

保存到桌面

php创建桌面快捷方式实现方法

在桌面保存为*.url后,点击就能自动打开浏览器并访问网站内容了。

第二种情况:php实现网站保存快捷桌面方式

<?php
/*
保存shortcut.php访问即可保存桌面
*/
$title="";
$shortcut = "[internetshortcut]
url=//www.jb51.net
idlist= 
[{000214a0-0000-0000-c000-000000000046}] prop3=19,2"; header("content-type: application/octet-stream"); header("content-disposition: attachment; filename=".$title.".url;"); echo $shortcut; ?>

第三种情况:php生成网站桌面快捷方式
php生成桌面快捷方式就是这么的简单,大家生成的时候改下你要生成的网站即可。
dianji.html代码:
 <a href="a.php?url=www.jb51.net&name=">生成左面快捷方式</a>
shengcheng.php代码:

 <?php
//网站生存左面快捷方式---功能 
$url = $_get['url']; 
$filename = urldecode($_get['name']); 
$filename = iconv('gbk','utf-8',$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; 
?>

希望本文所述对大家学习php程序设计有所帮助。