PHPでAjaxリクエストを検出するサンプルコード
phpコード:
$ajax = false;
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH’])
&& strtolower($_SERVER['HTTP_X_REQUESTED_WITH’]) == 'xmlhttprequest’)
{
$ajax = true;
}
Coding Changes the World
phpコード:
$ajax = false;
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH’])
&& strtolower($_SERVER['HTTP_X_REQUESTED_WITH’]) == 'xmlhttprequest’)
{
$ajax = true;
}