Arrays Flashcards
How do you map over an array?
array_map(‘numMultiplier’, $arr);
How do you get the sum of an array and how do you get the product?
array_sum($arr);
array_product($arr);
How do you filter over an array?
array_filter($arr, ‘bigNums’);
How do you check whether a value is in an array?
in_array(2, $arr);
How do you see all the different values between two arrays?
array_diff($arr, $arr2);
How do you replace certain values from one array with specified values from another array?
array_replace($arr, array(2 => ‘Seb’));
How can you remove all duplicate values from an array?
array_unique($arr);
How can you easily get the last item from an array?
end($arr);
How can iterate through every item in an array?
foreach($arr as $name) {
}