PHP 输出URL的快捷方式示例代码
程序员文章站
2022-06-20 23:52:22
复制代码 代码如下:
<?php
/**
* internet shortcut
*
* add the following into "head":
* <link href="favicon.ico" rel="icon" type="image/x-icon" />
* <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
* <link href="favicon.ico" rel="bookmark" type="image/x-icon" />
*/
$shortcut = '[internetshortcut]
url=http://onens.com/
idlist=
[{000214a0-0000-0000-c000-000000000046}]
prop3=19,2
';
header('content-type: application/octet-stream');
header('content-disposition: attachment; filename=onens.com.url;');
echo $shortcut;
复制代码 代码如下:
<?php
/**
* internet shortcut
*
* add the following into "head":
* <link href="favicon.ico" rel="icon" type="image/x-icon" />
* <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
* <link href="favicon.ico" rel="bookmark" type="image/x-icon" />
*/
$shortcut = '[internetshortcut]
url=http://onens.com/
idlist=
[{000214a0-0000-0000-c000-000000000046}]
prop3=19,2
';
header('content-type: application/octet-stream');
header('content-disposition: attachment; filename=onens.com.url;');
echo $shortcut;