i have an doubt. I want to check the new value is present in existing array which contains json data using PHP in_array method. I am explaining my code below.
{"introId":"582aa53755f5ab487614ddc9","introLabelName":"Age","isIntro":"Yes"}
Here i need to check 582aa53755f5ab487614ddc9 is present in the above array or not using PHP. Please help me.
json_decode()and then compare it within_array().