一.在标签tags的model中 //使用正则表达式,把标签字符串转换成数组 public static function string2array($tags) { return preg_split('/\s*,\s*/',trim($tags),-1,PREG_SPLIT_NO_EMPTY); } //把数组转换成字符串 public static function array2string($tags) { return implode(', ',$tags); } //处理需要新增的标…