Skip to content
Advertisement

Getting the values of a multidimensional array where key value is in another array

I have an array of courses:

JavaScript

And a multidimensional array of completed courses that looks like this:

JavaScript

I want to echo only the course, title and grade if it exists in the first array. I think I am needing a foreach loop, but I’m stuck.

Advertisement

Answer

You are on the right track in that you need to loop over your multi-dimensional array values and then see if the courses are in your course array. This can be done using a foreach in conjunction with the in_array function.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement