ここにjsonツリーがあります。単語が存在する場合、1つの単語をjsonツリーに入れる方法は?
[
{"name":"foo"},
{"name":"bar"},
{"name":"Hello"}
]
単語が存在する場合、1つの単語をjsonツリーに入れて一致させる方法はありますか?
$word = 'foo'; //'title'
if(...){
//if 'foo' is exist in the json tree, do some stuff
} else{
//if 'title' is not exist in the json tree, do something here
}
私はjson_decodeの2番目のパラメータとしてtrueを渡す必要があると思うので、オブジェクトの代わりに連想配列を生成します。それ以外の場合は、コードを$ element-> nameに変更する必要があります – fromvega