php 判斷是不是ajax請求

if(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'){
     echo 'is ajax';
}else{
    echo 'not ajax';
}
相關文章
相關標籤/搜索