PHP建立案頭捷徑執行個體,php捷徑執行個體
要利用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;
用PHP寫一個下載頁面到案頭的捷徑的代碼 網站開啟後顯示下面問題,問怎解決
你要寫一個單獨的頁面來建立捷徑,我估計你在這之前就有內容在頁面上輸出了,所以抱著個錯
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>
javascript怎建立案頭捷徑
網上常見的都是調用
WshShell.CreateShortcut但是只有ie支援ActiveXObject對象
所以要想實現只能跑後台 然後傳回一個捷徑
類似下載檔案一樣
給你找了段php的例子
http://www.bkjia.com/PHPjc/831620.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/831620.htmlTechArticlePHP建立案頭捷徑執行個體,php捷徑執行個體 要利用php建立案頭捷徑我們需要藉助於header,InternetShortcut及一些我看不懂的代碼。 方法: 新...