Skip to content

Instantly share code, notes, and snippets.

@nicklasos
Created November 29, 2013 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicklasos/7707278 to your computer and use it in GitHub Desktop.
Save nicklasos/7707278 to your computer and use it in GitHub Desktop.
<?php
function isAjax()
{
return
isset($_SERVER['HTTP_X_REQUESTED_WITH']) &&
$_SERVER['HTTP_X_REQUESTED_WITH'] &&
strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment