如何在PHP中使用多个值拆分字段结果?

时间:2014-09-10 20:39:57

标签: split

我尝试用多个值分割一个字段,我有这个字段..

具有此值的颜色由| ..

分隔

蓝色|黄色|绿色|白

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;
}

1 个答案:

答案 0 :(得分:1)

我假设你使用PHP,所以使用函数explode(),你会得到一个数组:

$result = explode("|", $result);