열 값을 기준으로 연관 배열 정렬 이 배열이 지정된 경우: $inventory = array( array("type"=>"fruit", "price"=>3.50), array("type"=>"milk", "price"=>2.90), array("type"=>"pork", "price"=>5.43), ); 를 분류하고 .$inventory가격대별 요소: $inventory = array( array("type"=>"pork", "price"=>5.43), array("type"=>"fruit", "price"=>3.50), array("type"=>"milk", "price"=>2.90), ); 어떻게 해야 하나요?맞습니다, 찾으시는 기능은. 다음은 설명서에서 직접 발췌하여 사용자의 경우에 적합한 예입니다..