发布时间:2014-11-28 15:01:10
php自带函数strip_tagsecho strip_tags("hello <b>world! </b>");自定义函数:function filterhtml($str) { $str=eregi_replace("</*[^<>]*>", , $str); $str=str_replace(" ", , $str); $str=str_replace("n", , $str); &.........【阅读全文】
发布时间:2014-11-26 15:06:51
php导出数据到excel时,身份证等比较长的数字会变成科学计数法表示,转换成字符还是不行,只需在身份证字段前加个英文单引号,如 “‘”.$value['cid'] ,这样就能显示完整了......【阅读全文】
发布时间:2014-11-25 17:32:11
ie6下css实现max/min-width/height_width:expression(this.width>300?"300px":ture); max-width:300px;_height:expression(this.height>300?"300px":ture); max-height:300px;......【阅读全文】
发布时间:2014-11-21 14:08:22
//编码,编码后为小写function escape($str){preg_match_all("/[\x80-\xff].|[\x01-\x7f]+/",$str,$newstr);$ar = $newstr[0];foreach($ar as $k=>$v){ if(ord($ar[$k])>=127){ $tmpString=bin2hex(iconv("GBK","ucs-2//IGNORE",$v)); if (!eregi("WIN",PHP_OS)){ &nbs.........【阅读全文】
发布时间:2014-11-20 15:16:40
本例可以实现1.符合规则定义的伪静态访问路径解析 对于"test.php/user/lists/normal/id/2.html" 可解析为 control = user,action = lists,filter = normal,order = id,curPage = 3 对于"test.php/users/lists.html" 可解析为 co.........【阅读全文】