<?php $hotel = [ [ 'name' => 'hotel one', 'hotel_price' => '100', 'hotel_child_price' => '50' ], [ 'name' => 'hotel two', 'hotel_price' => '200', 'hotel_child_price' => '100' ], [ 'name' => 'hotel three', 'hotel_price' => '300', 'hotel_child_price' => '200' ], ]; $user_selected_hotel = [ [ 'name' => 'hotel one', 'hotel_price' => '100' ], [ 'name' => 'hotel three', 'hotel_price' => '300' ] ]; var_export( array_sum( array_column( array_uintersect( $hotel, $user_selected_hotel, fn($a, $b) => $a['name'] <=> $b['name'] ), 'hotel_child_price' ) ) );
You have javascript disabled. You will not be able to edit any code.