There is a full array and a specific array.
I want to get only parts that fit a particular in the entire array.
For example, I have two arrays.
$all_array = array('a'=>'1', 'b'=>'2', 'c'=>'3', 'd'=>'4', 'e'=>'5')
$find_array = array('b', 'd', 'e')
Then, I want to get $result_array
array('b'=>'2', 'd'=>'4', 'e'=>'5');
or array('2', '4', '5');
Is there a way to get result?