Skip to content
Advertisement

PHP remove multiple array key inside an array with multiple values

I find I can’t figure out the desired output.

I have JSON raw data contains this:

JavaScript

This is what I have tried

JavaScript

I want to get all the keys of the arrays and if tickers has multiple value don’t echo it.

Sample desired output:

JavaScript

Advertisement

Answer

You should be able to just loop over the data key of your source data, extracting the title and tickers and outputting a result if the count of the tickers is 1:

JavaScript

Output (for your sample data):

JavaScript

Demo on 3v4l.org

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