[['name'=>'и','country'=>'ч','year'=>'x'],['name'=>'qwer','country'=>'fergr','year'=>'0'],['name'=>'gtrh','country'=>'rthttyh','year'=>'1'],['name'=>'23rty','country'=>'wefrt','year'=>'x'],['name'=>'qwefg','country'=>'wertyuj','year'=>'x']]
$your_array= [['name'=>'и','country'=>'ч','year'=>'x'],['name'=>'qwer','country'=>'fergr','year'=>'0'],['name'=>'gtrh','country'=>'rthttyh','year'=>'1'],['name'=>'23rty','country'=>'wefrt','year'=>'x'],['name'=>'qwefg','country'=>'wertyuj','year'=>'x']];
foreach($your_array as $element) {
$hash = $element['year'];
$unique_array[$hash] = $element;
}
print_r($unique_array);