$country
当我dd($country);
时,我看到了这个
我想打印出该数组的所有国家/地区名称(仅限唯一值)
我尝试了echo (array_unique(array_values($country)));
但我收到了错误
ErrorException (E_UNKNOWN)
Array to string conversion
答案 0 :(得分:3)
你不能echo
一个数组。这不是一个字符串。
// There's no need to use array_values
$uniqueValues = array_unique($continent);
foreach($uniqueValues as $country){
echo $country, '<br>';
}
答案 1 :(得分:0)
因为我有来自$countries[$k] = $v['hq_country']['name'];
将它们打印出来,我只需要这样做
foreach(array_unique($countries) as $country){
echo $country ;
}