Skip to content

Instantly share code, notes, and snippets.

@caioregatieri
Created October 5, 2017 01:37
Show Gist options
  • Save caioregatieri/880a97829496b3b204331f6a5bae466b to your computer and use it in GitHub Desktop.
Save caioregatieri/880a97829496b3b204331f6a5bae466b to your computer and use it in GitHub Desktop.
<?php
/*-------------------------------------------------+
| Checks if the http request is an AJAX call.
+-------------------------------------------------*/
function is_ajax() {
return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && (strtolower(getenv('HTTP_X_REQUESTED_WITH')) === 'xmlhttprequest'));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment