去重前
$result = $this->unique_array_by_key($result,"id");
function unique_array_by_key($array, $unique_key) {
$tmp_key[] = array();
foreach ($array as $key => &$item) {
if ( is_array($item) && isset($item[$unique_key]) ) {
if ( in_array($item[$unique_key], $tmp_key) ) {
unset($array[$key]);
} else {
$tmp_key[] = $item[$unique_key];
}
}
}
return $array;
}