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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *