本文整理匯總了PHP中http::is_ajax方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::is_ajax方法的具體用法?PHP http::is_ajax怎麽用?PHP http::is_ajax使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::is_ajax方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: bootstrap
static function bootstrap($controller, $method)
{
try {
if ($controller && $method) {
define('CURRENT_ACTION', substr($controller . ':' . $method, 2));
if (property_exists($controller, 'static_class')) {
if (method_exists($controller, '__before')) {
call_user_func($controller . '::__before');
}
call_user_func(array($controller, $method), explode('/', URL_REQUEST));
if (method_exists($controller, '__after')) {
call_user_func($controller, '::__after');
}
} else {
$object = new $controller();
if (method_exists($controller, '__before')) {
$object->__before();
}
call_user_func_array(array($object, $method), array(explode('/', URL_REQUEST)));
if (method_exists($controller, '__after')) {
$object->__after();
}
}
} else {
throw new Exception('absent controller or method', 101);
}
} catch (Exception $e) {
logger::exception('exception', $e->getCode() . ' : ' . $e->getMessage());
if (preg_match('/^(similar|product)$/', ENVIRONMENT)) {
if (http::is_ajax()) {
http::json(array('error' => 4, 'message' => $e->getMessage(), 'data' => null));
} else {
http::abort($e->getMessage(), '', 10);
}
}
debug::exception($e);
}
}