Skip to content
Advertisement

Php Json Get Keys

I echoed this and fetched in ajax .

JavaScript

The results am getting in json is:

JavaScript

Now in my php code I need to get the Keys of errorCode that sometimes is a successCode so when I try this:

JavaScript

Its fine because the errorCode is found in Json. When there is a success message i.e:

JavaScript

}

I get an error with the first statement. Because errorCode is not found in Json So what I actually need is to get the key of json(which will be either errorCode or successCode) i.e

JavaScript

Advertisement

Answer

Using isset will accomplish your goal:

JavaScript

Or you can just use it in the if statements directly without making a new single var:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement