phpを使用してデスクトップショートカットを作成するには、ヘッダー、InternetShortcut、および理解できないいくつかのコードを使用する必要があります。
方法:新しいphpファイルを作成し、次のコードをそこにスローし、たとえばshortcut.phpとして保存し、Webサイトとディレクトリに配置します。コードは次のとおりです:
リーリー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;
生成時にハイパーリンクを作成します
JavaScriptでデスクトップショートカットを作成する方法
したがって、これを実装したい場合は、バックグラウンドで実行してショートカットを送り返すことしかできません
ファイルのダウンロードと同様です
Iあなたのための 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; ?>
http://www.bkjia.com/PHPjc/831620.html