我有一个数据库表,其中有一列在每个字段中存储多个字符串,用 ; 分隔。
我需要获取该列中所有唯一值的列表。我知道必须有一种更简单的方法来做到这一点,但我无法在任何地方找到我的答案。这是我到目前为止正在做的事情:
$result = mysql_query("SELECT DISTINCT column FROM modx_scripture_table WHERE column!=''", $con);
$filter_all = array();
while($row = mysql_fetch_array($result))
{
$filter_all[] = $row;
}
function array_flatten($array) {
if (!is_array($array)) {
return FALSE;
}
$result = array();
foreach ($array as $key => $value) {
if (is_array($value)) {
$result = array_merge($result, array_flatten($value));
}
else {
$result[$key] = $value;
}
}
return $result;
}
$filter_flat = array_flatten($filter_all);
function array_explode($array) {
$result = array();
foreach ($array as $key => $value) {
$result[$key] = explode(';',$value);
}
return $result;
}
$filter_sploded = array_explode($filter_flat);
$filter_full = array_flatten($filter_sploded);
$filter_final = array_unique($filter_full);
print_r($filter_final);
除了array_unique,一切似乎都在工作。我仍然在 $filter_final 中得到重复的字符串。我究竟做错了什么?