摘要:
html 代码 js 代码 阅读全文
摘要:
php 代码:public function sign(){ $current=date('Y-m-d H:i:s',time());//当前时间 $hasSign=M('sign')->where("uid={$this->uid}")->find();//当前会员的签到表 $count=$hasSign['si_count'];//签到次数 ... 阅读全文
摘要:
ie 浏览器 打开你要判断的网站 在地址栏上输入javascript:alert(document.lastModified),此方法可以判断一个网站的最新更新时间 如果这个时间和当前时间一样 说明为伪静态 反之 则不是(已测试) 火狐浏览器 打开你要判定的网站 进入firefox 的控制台 工具- 阅读全文
摘要:
$date=strtotime('2016-06-10 00:00');$where['add_time']=array('gt',$date);$market = M('member_integrallog l') ->join(C(DB_PREFIX)."members as m on l.ui 阅读全文
摘要:
$num = 10.4567; //第一种:利用round()对浮点数进行四舍五入 echo round($num,2); //10.46 //第二种:利用sprintf格式化字符串 $format_num = sprintf("%.2f",$num); echo $format_num; //10 阅读全文
摘要:
iis 环境(https://www.cnblogs.com/xunzhiyou/p/7758161.html) 1. URL重写组件url-rewrite2 微软官方下载地址 http://www.iis.net/downloads/microsoft/url-rewrite 下载安装 导入.ht 阅读全文
摘要:
一些常用的正则运算: 验证数字:^[0-9]*$ 验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$ 验证m-n位的数字:^\d{m,n}$ 验证零和非零开头的数字:^(0|[1-9][0-9]*)$ 验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$ 验证有1-3位小 阅读全文
摘要:
$content = iconv("utf-8","gb2312//IGNORE",$content); //utf-8转gbk $content = iconv("gb2312","utf-8//IGNORE",$content); //gb2312换为utf-8 阅读全文
摘要:
<!-- //平台、设备和操作系统var system ={win : false,mac : false,xll : false};//检测平台var p = navigator.platform;system.win = p.indexOf("Win") == 0;system.mac = p. 阅读全文
摘要:
file_get_contents — 将整个文件读入一个字符串 file_put_contents 将整个 函数把一个字符串写入文件中 阅读全文
摘要:
在PHP 中,变量名和变量内容是不一样的,因此同样的内容可以有不同的名字。在 PHP 中引用意味着用不同的名字访问同一个变量内容。 例子1: $a = "dfgh"; $b =& $a; echo $b.$a; 这意味着 $a 和 $b 指向了同一个变量。同一个变量内容有不同的变量名 函数的引用传递 阅读全文
摘要:
1 .使用meta元信息 <meta http-equiv="refresh" content="5;url=http://www.cnblogs.com/tianbo16/p/6761308.html"> 5s跳转 2.使用javascript中的window.location对象 <!--这里的 阅读全文
摘要:
1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout: 要求为Number类型的 阅读全文