-2
$values = array();
while($root = mysql_fetch_array($res)){
$root["prefix"] = $this->get_prefix($root['position']);
}
return $values;
我收到輸出>>,職位名稱產出所需的格式
但我想... >>位置名字......是有可能刪除逗號。
$values = array();
while($root = mysql_fetch_array($res)){
$root["prefix"] = $this->get_prefix($root['position']);
}
return $values;
我收到輸出>>,職位名稱產出所需的格式
但我想... >>位置名字......是有可能刪除逗號。
不知道原始代碼...
$root["prefix"] = preg_replace('/^>>,/','>>', $this->get_prefix($root['position']));
,您張貼有絕對無關,與你得到的輸出的代碼。 – SilentGhost 2009-07-16 11:18:31
我同意,除非你所說的'輸出'是$ root [「prefix」] – 2009-07-16 11:20:30