$arr_seo = Array ( [5] => Array ( [term_id] => 1680 [perc] => 50 ) [6] => Array ( [term_id] => 1114 [perc] => 27 ) )
<?php
$arr_seo = [ 5 => [ 'term_id' => 1680, 'perc' => 50 ], 6 =>[ 'term_id' => 1114, 'perc' => 27]];
$max_perc = 0;
$max_term_id = 0;
foreach($arr_seo as $key => $row) {
if($row['perc'] > $max_perc) {
$max_perc = $row['perc'];
$max_term_id = $row['term_id'];
}
}
var_dump($max_term_id);