PHP建立案頭捷徑執行個體,php捷徑執行個體_PHP教程

來源:互聯網
上載者:User

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及一些我看不懂的代碼。 方法: 新...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.