标签:style blog io color ar os sp div on
1 /** 2 * 中文处理 3 * @param type $str 4 * @return str 5 * $author lxh 6 */ 7 function url2word($str){ 8 $sub=strpos($str,‘%‘); 9 if(false!==$sub){ 10 $res=urldecode($str); 11 $sole= url2word($res); 12 return $sole; 13 }else{ 14 return $str; 15 } 16 }
在传入含有中文where字段时,调用url2word(I(‘feild‘))处理改字段;
模板中若要显示的话也可以把该函数添加到commom.php中,这样在模板中就可以 {$val|url2word} 就不会显示url编码。
标签:style blog io color ar os sp div on
原文地址:http://www.cnblogs.com/findgor/p/4078022.html