2023年12月5日发(作者:)
php手机桌面快捷代码,php代码创建网站桌面快捷方式
//$url = $_GET['url'];
//$filename = urldecode($_GET['name']);
$url = "your site";
$filename = "site name";
$filename = iconv('utf-8','GBk',$filename);//字符集转换
if (!$url || !$filename) exit();
$Shortcut = "[InternetShortcut]
URL={$url}
IDList=
[{000214A0-0000-0000-C0046}]
Prop3=19,2
";
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename={$filename}.url;");
echo $Shortcut;
>


发布评论