判定是否ajax调用

前端之家收集整理的这篇文章主要介绍了判定是否ajax调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/** * 判定是否ajax调用 */ public static function is_ajax() { if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) { // Typically used to denote AJAX requests $requested_with = strtolower($_SERVER['HTTP_X_REQUESTED_WITH']); } return ($requested_with === 'xmlhttprequest'); }

猜你在找的Ajax相关文章