Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anyway to check whether an incoming request is of AJAX JSON type?

I tried

if(($_SERVER['REQUEST_METHOD']=='JSON'))
{
}

But it didn't work.

Any thoughts?

share|improve this question
Note, the mime is application/json. – Dykam Sep 4 '09 at 9:30

6 Answers

up vote 8 down vote accepted

Where are you accepting requests from, exactly, that you wouldn't know?

You could have a function at the beginning of the script that tries to import the data as JSON or simplexml. If it catches an error, you know it's the other one...

On second thought, have it test it to be JSON, simplexml will throw an error for tons of reasons.

 $json_request = (json_decode($request) != NULL) ? true : false;
share|improve this answer

You would need to set a header from the client side. jQuery and other libraries set a x-requested-with header:

if(strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
{
   echo "Ajax request";
}
share|improve this answer

You can check the X-Requested-With header, some libraries, like jQuery set it to "XMLHttpRequest".

$isAjaxRequest = $_SERVER['X_REQUESTED_WITH'] == 'XMLHttpRequest';
share|improve this answer
In your link, jQuery uses 'X-Requested-With' not 'X_REQUESTED_WITH'. So wouldn't we do $is_ajax = ($_SERVER['X-Requested-With'] == 'XMLHttpRequest'); instead? – Justin May 7 at 20:02

Try json_decode()

share|improve this answer

You can do a check on the accept param, if it's text/javascript your talking json, if it's text/xml guess what :P

$_SERVER['HTTP_ACCEPT']

share|improve this answer
You are assuming that the JavaScript program will be setting the XMLHttpRequest's headers correctly, which is never done (who cares?). Generally the server-side script is made to answer in only one format, and I can't see any reason why it should be different. – Havenard Sep 4 '09 at 6:42

you can always set an extra header specifying that, or use an arbitrary variable to indicate JSON requests.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.