You have two arrays, one with keys and another with values. You need to combine them such that keys from the first array map to values from the second. Which PHP function would you use?
- array_merge()
- array_combine()
- array_diff()
- array_search()
The array_combine() function takes two arrays and creates a new array where the keys are from the first array and values from the second array.
Loading...
Related Quiz
- What is the purpose of the require_once() function in PHP?
- What does the scope of variables mean?
- Which PHP loop is suitable when you want to iterate over a block of code for a known number of times?
- Which keyword is used in PHP to inherit a class?
- Which of the following is NOT a valid visibility keyword for properties and methods in PHP classes?