I have array like below the page. I want to find array number which [itag] => 22 .
In this example this is [1], means:
[1] => Array
(
[url] => asd2
[quality] => hd720
[fallback_host] => ax2
[type] => video/mp4; codecs=\"avc1.64001F, mp4a.40.2\"
[itag] => 22
)
How could I find this in these array structure: ?
Array
(
[0] => Array
(
[url] => asd1
[quality] => hd720
[fallback_host] => ax1
[type] => video/webm; codecs=\"vp8.0, vorbis\"
[itag] => 45
)
[1] => Array
(
[url] => asd2
[quality] => hd720
[fallback_host] => ax2
[type] => video/mp4; codecs=\"avc1.64001F, mp4a.40.2\"
[itag] => 22
)
[2] => Array
(
[url] => asd3
[quality] => large
[fallback_host] => ax3
[type] => video/webm; codecs=\"vp8.0, vorbis\"
[itag] => 44
)
[3] => Array
(
[url] => asd4
[quality] => large
[fallback_host] => ax4
[type] => video/x-flv
[itag] => 35
)
)
And a low-tech solution, without anything fancy: