PHP中如何创建网站快捷方式链接?
- 内容介绍
- 文章标签
- 相关推荐
本文共计43个文字,预计阅读时间需要1分钟。
php
<?php $Shortcut = "[InternetShortcut] URL=blog.csdn.net/phpfenghuo/ IDList = [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2"; Header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=风火程序员.url;"); echo $Shortcut; ?>
本文共计43个文字,预计阅读时间需要1分钟。
php
<?php $Shortcut = "[InternetShortcut] URL=blog.csdn.net/phpfenghuo/ IDList = [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2"; Header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=风火程序员.url;"); echo $Shortcut; ?>

