要利用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;
你要寫一個單獨的頁面來創建快捷方式,我估計你在這之前就有內容在頁面上輸出了,所以抱著個錯
a.php
----------------------------------
$url = $_GET['url'];
$filename = urldecode($_GET['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;
生成的時候做個超鏈接
<a href="a.php?url=網頁地址&name=快捷方式名稱">快捷方式</a>
網上常見的都是調用
WshShell.CreateShortcut但是只有ie支持ActiveXObject對象
所以要想實現只能跑後台 然後傳回一個快捷方式
類似下載文件一樣
給你找了段php的例子
<?php $Shortcut = "[InternetShortcut] URL=xxxxIconFile=xxx.ico IconIndex=0 HotKey=1613 IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2"; header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=xxxx.url"); echo $Shortcut; ?>