您的位置: 站云中国 » 网站托管 » 使用PHP生成.url文件
使用PHP生成.url文件
2012-06-24 17:08 站云中国
提示用户是否在桌面创建一个本站的快捷方式的代码;
<?php
$content = '[InternetShortcut]
URL=http://www.zyuncn.com
IDList=[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
';
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=站云中国.url;");
echo $content;
?>