私はこのオブジェクトの配列を持っています。しかし、私は特定の基準を満たすオブジェクトを引き出すだけです。 "post_title"キーを見ると、コンマが含まれていないオブジェクトだけを取り出したいと思う。これは可能ですか?PHP:オブジェクト要素の条件に基づいて配列オブジェクト要素をプルしますか?
私の例では、 "post_title"キーにカンマがない唯一のものであるため、インデックス2の配列を取り出したいと思います。
Array
(
[0] => stdClass Object
(
[ID] => 504
[post_title] => Playroom (Black, Custom 2)
)
[1] => stdClass Object
(
[ID] => 503
[post_title] => Playroom (Black, Custom 1)
)
[2] => stdClass Object
(
[ID] => 252
[post_title] => Play (Black)
)
)
1
ありがとうございました。
http://stackoverflow.com/questions/2840127/filter-by-value-in-object-of-array – pritaeas