'PHP, using two counters to decide top results of an array

I have a block of PHP code where I'm using two counters (one specifically for a particular key of featured if the value is 1.

So far, the counter works by putting any records where featured == 1 in $cnt1 and everything else in $cnt2. However, this doesn't do anything for my sorting.

How can I make this so that the final array puts all featured ($cnt1) records at the top of the array/the first results?

if(count($myresults)>0){
    foreach ($myresults as $key => $value) {
        $id = $value->ID;
        if(get_post_meta($id,'_awpcp_extra_field[36]',true) !='' && get_post_meta($id,'_awpcp_extra_field[37]',true) != ''){
            $lat = get_post_meta($id,'_awpcp_extra_field[36]',true);
            $lon = get_post_meta($id,'_awpcp_extra_field[37]',true);
            $area  = get_post_meta($id,'_awpcp_extra_field[38]',true);
            $amnt = get_post_meta($id,'_awpcp_price',true)/100;
            $ttle = get_the_title($id);
            $link = get_permalink($id);
            $desc = get_the_excerpt($id);
            $date = get_the_time('m/d/Y',$id);
            $is_featured = get_post_meta($id,'_awpcp_is_featured',true);
            $imgpath = get_the_post_thumbnail_url($id,'dailymag-featured');

            $counter_name = ($is_featured == 1) ? 'cnt1' : 'cnt2';
                        
            $ress[$$counter_name]['featured']  = $is_featured;
            $ress[$$counter_name]['lat']  = $lat;
            $ress[$$counter_name]['lon']  = $lon;
            $ress[$$counter_name]['area']  = $area;
            $ress[$$counter_name]['amnt'] = $amnt;
            $ress[$$counter_name]['ttle'] = $ttle;
            $ress[$$counter_name]['link'] = $link;
            $ress[$$counter_name]['desc'] = $desc;
            $ress[$$counter_name]['date'] = $date;
            $ress[$$counter_name]['count'] = $counter_name;
                        
            if($imgpath){
                $ress[$$counter_name]['imgs'] = $imgpath;
            }else{
                $ress[$$counter_name]['imgs'] = '/wp-content/uploads/2022/03/fairfax-4670d9c9.jpeg';
            }
            $$counter_name++;
       }
    }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source