I would like to filter the values of [name] from the array below.
Array
(
[0] => Array
(
[name] => tags1
)
[1] => Array
(
[name] => tag2
)
[2] => Array
(
[name] => tag3
)
)
How to do that?
array_column()OR look in the profile of @AbraCadaver for a workaround implementation for php versions under 5.5 :D