我尝试用多个值分割一个字段,我有这个字段..
具有此值的颜色由| ..
分隔蓝色|黄色|绿色|白
function getAutocomplete($term) {
global $db;
global $config_table_prefix;
$result = $db->fetchRowList("SELECT `colors` from ".TABLE_COLORS." where `colors` like '$term%' limit 10");
//This code need some code here to split this values
return $result;
}