Skip to content
Advertisement

Removing a key from a nested array in php

I am trying to display information taken from a mysql database but i do not want to display the ‘id’ field in the results. i got the displaying part down just fine. just need to remove a field from the view.

JavaScript

The code will return a nested array of results but it includes the tables id field.

its then displayed using:

JavaScript

ive tried to loop through the outside array and target the key ‘id’ but it doesnt do anything at all if i unset the id.

JavaScript

this does nothing at all.

i know the problem is in the looping, because if i set an array with the same data and i unset[‘id’] then it removes the id.

JavaScript

i could have this completely wrong. I’m not sure. I’m unsure where its going wrong.

Advertisement

Answer

The reason that your loop doesn’t work is because you aren’t unsetting the values in the array itself, rather in the “copy” that is generated during the foreach loop. If you want to use this solution then the right code looks something like this:

JavaScript

The & symbol will pass the row by reference which will make your manipulations be kept in the original array.

That said, this is not a performant way of doing this. Ostensibly, you have a query somewhere above this code that looks something like

JavaScript

Instead, just don’t get the id column from the database at all.

JavaScript

That will prevent you from needing to loop through all your results in the first place.

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