程序路由 不能进行 多条件 伪静态
简单的就是使用服务器伪静态规则, 我所讲的是针对本系统的。
如: http://wenda.wecenter.com/ijjj/sjh-1__uyy-3 http://wenda.wecenter.com/ijjj/sjh-(:num)__uyy-(:num) 就无法实现
修改代码
$replace_exp= explode('$1', $replace);
if(sizeof($replace_exp) >2)
{
$string_g = array();
if($replace_exp && is_array($replace_exp)){
foreach ($replace_exp as $key=> $value){
if($value){
$key = $key+1;
$string_g[] = $value.'$'.$key;
}
}
}
$array2string = implode('',$string_g);
$replace = $array2string;
}
暂无评论