$values = array();
while($root = mysql_fetch_array($res)){
$root["prefix"] = $this->get_prefix($root['position']);
}
return $values;
我的输出为>>,位置名称
但我想...>>位置名称...是否可以删除逗号。
答案 0 :(得分:0)
不知道原始代码......
$root["prefix"] = preg_replace('/^>>,/','>>', $this->get_prefix($root['position']));