2016年(89)
发布时间:2016-06-27 22:43:52
上个月的第一天: select date_sub(date_sub(date_format(now(),'%y-%m-%d'),interval extract( day from now())-1 day),interval 1 month)上个月的最后一天:select date_sub(date_sub(date_format(now(),'%y-%m-%d'),interval extract( day from now()) day),interval 0 month) as.........【阅读全文】
发布时间:2016-06-26 23:55:22
用途:校验ip地址的格式 输入:strIP:ip地址返回:如果通过验证返回true,否则返回false;*/ function isIP(strIP) { if (isNull(strIP)) return false; var re=/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/g //匹配IP地址的正则表达式 if(re.test(strIP)) { if( RegExp.$1 <256 && RegExp.$2<256 && RegExp.$3<256 && RegExp..........【阅读全文】
发布时间:2016-06-24 22:32:16
$za = new ZipArchive();$za->open('0816.tmt');$comment = $za->getArchiveComment();//如果需要转字符串编码$comment= iconv("gbk","UTF-8",$comment);转载自:http://www.9958.pw/post/php_zip_comment......【阅读全文】
发布时间:2016-06-20 00:08:41
$za = new ZipArchive();$za->open('0816.tmt');$comment = $za->getArchiveComment();//如果需要转字符串编码$comment= iconv("gbk","UTF-8",$comment);转载自:http://www.9958.pw/post/php_zip_comment......【阅读全文】
发布时间:2016-06-16 22:07:45
function isCardNo(card){ // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/; if(reg.test(card) === false) { alert("身份证输入不合法"); return false; }}转载自:http://w.........【阅读全文】