Array
(
[0] =>
[1] => Array
(
[0] => #EXTM3U
)
[2] => Array
(
[0] => #EXTINF:-1 tvg-id="" tvg-name="BBB 18 -Aquecimento" tvg-logo"https://s9.postimg.org/4c14egx5b/big_welcome_Pic_4-300x169.png" group-title="Canais Globo",BBB 18 -Aquecimento (...)
)
[3] => Array
(
[0] => http://infinity.quor8.com:8000/live/N708Kwo02j/qsTfBzzoPk/12664.ts
)
[4] => Array
(
[0] => #EXTINF:-1 tvg-id="" tvg-name="Globo RJ FHD" tvg-logo="http://i.imgur.com/NSHvLCe.png" group-title="Canais Globo",Globo RJ FHD
)
)
I have this array above and I need only get the value of tvg-logo
I tried this way here: $array[2][tvg-logo];
But the result was this:
#EXTINF:-1 tvg-id="" tvg-name="BBB 18 -Aquecimento" tvg-logo="https://s9.postimg.org/4c14egx5b/big_Welcome_Pic_4-300x169.png" group-title="Canais Globo",BBB 18 -Aquecimento
As I said, I only need the value of tvg-logo
Can anyone help?