摘要:
<?php /** * 获取ip地址的方法 */ // 1: function getip() { static $ip = ''; $ip = $_SERVER['REMOTE_ADDR']; if(isset($_SERVER['HTTP_CDN_SRC_IP'])) { $ip = $_SER 阅读全文
摘要:
php内置函数大全 第2章 Apache函数 15 2.1 Apache信息获取类函数 15 2.1.1 apache_child_terminate函数:在本次请求结束后终止Apache进程 15 2.1.2 apache_get_modules函数:获取Apache的模块列表 16 2.1.3 阅读全文
摘要:
HTTP header 详解 Requests部分 Header解释示例 Accept 指定客户端能够接收的内容类型 Accept: text/plain, text/html Accept-Charset 浏览器可以接受的字符编码集。 Accept-Charset: iso-8859-5 Acce 阅读全文
摘要:
function getMonDate($start,$end){ $monArr=array(); $dt_start = strtotime($start); $dt_end = strtotime($end); while ($dt_start<=$dt_end){ $monArr[]=date('Y-m-d',$dt_start); ... 阅读全文
摘要:
代码的参数为年月日三项,可以更改成一个参数(周日的日期) 阅读全文
摘要:
function getWeekDate($year,$weeknum){ $firstdayofyear=mktime(0,0,0,1,2,$year); $firstweekday=date('w',$firstdayofyear); $firstweenum=date('W',$firstdayofyear); if($firstweenum==1){ ... 阅读全文
摘要:
在页面内容加载完成后执行 阅读全文
摘要:
//meta:定义关于HTML文档的元信息,关于meta标签在笔记一里面已经描述的比较清楚了,这边不进行重复,只是简单列出来 3s之后刷新 3s之后刷新并跳转到百度 //title:定义文档的标题 网站的标题 //link:定义文档与外部资源的关系 //显示在浏览器选项卡标题前的小图标 大部分浏览器都支持icon 只有个别浏览器不... 阅读全文
摘要:
meta 标签的作用 搜索引擎(SEO)优化; 定义页面使用语言; 自动刷新页面; 控制页面缓存; 网页定级评价; 控制页面显示的窗口; 等等... meta 使用 <meta>标签总共有 3 个属性,不同的属性和值组成了网页不同的功能: name http-equiv content name 属 阅读全文
摘要:
常用header汇总: header('Content-Type: text/html; charset=utf-8'); //网页编码 header('Content-Type: text/plain'); //纯文本格式 header('Content-Type: image/jpeg'); / 阅读全文