dedecms织梦5.7 二级栏目title中/(斜杠)替换的方法

找到\include\arc.listview.class.php,搜索

原文 $this->Fields['title'] = preg_replace("/[<>]/", " / ", $this->TypeLink->GetPositionLink(false)); 大约为83行

修改为  $this->Fields['title'] =preg_replace('/[\s\v]+/',"",ereg_replace("[<>]","_",$this->TypeLink->GetPositionLink(false))) ;

来源于www.qqtu88.com


 

原文地址:https://www.cnblogs.com/yeye518/p/2231638.html