Skip to content

Instantly share code, notes, and snippets.

@stefket
Last active December 11, 2015 08:36
Show Gist options
  • Select an option

  • Save stefket/0da939b93e31d4f3061b to your computer and use it in GitHub Desktop.

Select an option

Save stefket/0da939b93e31d4f3061b to your computer and use it in GitHub Desktop.
Check if ajax request
<?php
/**
* @return boolean
*/
function is_ajax()
{
if (!isset($_SERVER['HTTP_X_REQUESTED_WITH'])) {
return false;
}
return 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