Q:

Write a PHP script to get an array containing all the entries of an array which have the keys that are present in another array

0

Write a PHP script to get an array containing all the entries of an array which have the keys that are present in another array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
$first_array = array('c1' => 'Red', 'c2' => 'Green', 'c3' => 'White', 'c4' => 'Black'); 
$second_array = array('c2', 'c4'); 
print_r(array_intersect_key($first_array, array_flip($second_array)));
?>

Sample Output:

Array                                                       
(                                                           
    [c2] => Green                                           
    [c4] => Black                                           
)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now