本文整理汇总了PHP中CI_Input::is_ajax_request方法的典型用法代码示例。如果您正苦于以下问题:PHP CI_Input::is_ajax_request方法的具体用法?PHP CI_Input::is_ajax_request怎么用?PHP CI_Input::is_ajax_request使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CI_Input
的用法示例。
在下文中一共展示了CI_Input::is_ajax_request方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: processResponseData
private function processResponseData(array $response)
{
if (!$this->input->is_ajax_request()) {
redirect('/');
}
$this->output->set_content_type('application/json');
if ($response['code'] == 200) {
if ($response['data']['success']) {
$this->output->set_output(json_encode($response['data']['data']));
}
}
}
示例2: ajax
public function ajax($function)
{
if (!$this->input->is_ajax_request() || !method_exists($this, $function)) {
show_404();
return false;
}
$this->{$function}();
return true;
}
示例3:
require_once BASEPATH . 'core/Input.php';
$local_input = new CI_Input();
if ($local_input->is_cli_request()) {
?>
<?php
echo strip_tags($heading) . "\n";
?>
--------------------
<?php
echo strip_tags($message);
?>
<?php
} else {
if (!$local_input->is_ajax_request()) {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page Not Found</title>
<meta charset="utf-8" />
<?php
}
?>
<style type="text/css">
#container::selection{ background-color: #E13300; color: white; }
#container::moz-selection{ background-color: #E13300; color: white; }
#container::webkit-selection{ background-color: #E13300; color: white; }