php创建网页桌面快捷方式

使用php生成网站的桌面快捷方式。

$Shortcut = "[InternetShortcut]
URL=https://taizidian.cn/    
IDList=  
IconFile=https://taizidian.cn/favicon.ico   //网站根目录有ico图标
IconIndex=1    
[{000214A0-0000-0000-C000-000000000046}]    
Prop3=19,2    
";      
Header("Content-type: application/octet-stream");      
header("Content-Disposition: attachment; filename=格娜小屋.url;");      
echo $Shortcut;