本文整理汇总了PHP中MY_Controller::_app_required_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP MY_Controller::_app_required_fields方法的具体用法?PHP MY_Controller::_app_required_fields怎么用?PHP MY_Controller::_app_required_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MY_Controller
的用法示例。
在下文中一共展示了MY_Controller::_app_required_fields方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
$this->load->library(array('UserAuth', 'Http'));
$this->load->model(['MLog']);
$this->load->helper(array('api_filter_fields'));
self::$_app_required_fields = C('app_filter_fields');
$this->post = json_decode(file_get_contents("php://input"), TRUE);
// 从post中json字符串中解析出变量并合并到$_POST
if (!empty($this->post)) {
$this->post = xss_clean($this->post);
$_POST = array_merge($_POST, $this->post);
} else {
$this->post = xss_clean($_POST);
}
$this->_select_service_by_url();
//过滤非法访问
//$this->_check_sign();
// 记录系统日志
$this->MLog->record($this->userauth->current(TRUE));
// 激活分析器以调试程序
//$this->output->enable_profiler(TRUE);
}