PHP 输出URL的快捷方式示例代码
2015-01-24信息快讯网
输出URL的快捷方式的实现方法有很多,在本文将为大家介绍下使用php是如何实现的,感兴趣的朋友可以参考下,希望对大家有所帮助
<?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 get_meta_tags()函数
PHP函数getenv简介和使用实例
PHP写的资源下载防盗链类分享
php结合ajax实现赞、顶、踩功能实例
PHP中spl_autoload_register()和__autoload()区别分析
php中curl和file_get_content的区别
php中curl、fsocket、file_get_content三个函数的使用比较
PHP CURL获取返回值的方法
PHP使用CURL获取302跳转后的地址实例
PHP include任意文件或URL介绍
PHP导航下拉菜单的实现如此简单
PHP截断标题且兼容utf8和gb2312编码
PHP循环函数使用介绍之PHP基础入门教程
PHP Switch 语句之学习笔记
PHP基础知识介绍
遭遇php的in_array低性能问题
对淘宝URL中ID提取的PHP代码
php中url传递中文字符,特殊危险字符的解决方法
php curl基本操作详解
利用curl抓取远程页面内容的示例代码
奉献出一个封装的curl函数 便于调用(抓数据专用)