json_decode()
を使用してデータを設定するJSON配列があります。フィルターjson配列php by文字列
配列の特定の項目と一致するものを探していますが、一致する場合は配列の「行」全体を返す必要があります。見つかったすべてのfilter_array()スニペットのような単一のフィールドだけでなく、 。
誰でも正しい方向に向けることができますか?
データはjson_decode()
を呼び出す前に、次のようになります。
[
{
"format": "default",
"media_url": "http://cpe.delvenetworks.com/000337/011911_redzonefull.mp3",
"title": "RZ - Jim Trotter",
"thumb_url": "",
"date_posted": "2011-01-19 14:58:45",
"media_type": "audio"
},
{
"format": "default",
"media_url": "http://cpe.delvenetworks.com/000337/f10bestof2010offense.mp4",
"title": "Best of O - 2010",
"thumb_url": "http://img.delvenetworks.com/bV7.120x66.jpeg",
"date_posted": "2011-01-18 16:01:45",
"media_type": "video"
},
{
"format": "default",
"media_url": "http://cpe.delvenetworks.com/000337\f10bestof2010defense.mp4",
"title": "Best od D - 2010",
"thumb_url": "http://img.delvenetworks.com/UqK.120x66.jpeg",
"date_posted": "2011-01-18 16:01:45",
"media_type": "video"
}
私はmedia_type
と一致する必要があります。
うん上記の解答を修正します! –