Skip to content

Instantly share code, notes, and snippets.

@felds
Created May 9, 2011 21:27
Show Gist options
  • Save felds/963452 to your computer and use it in GitHub Desktop.
Save felds/963452 to your computer and use it in GitHub Desktop.
Checks if this is an AJAX request
<?php
/**
* Checks if this is an AJAX request
*
* @author Luiz "Felds" Liscia <dev@felds.com.br>
* return bool
*/
function is_ajax()
{
return isset($_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