我有一个基本控制器,需要在收到数据后随时记录操作。不幸的是,我似乎无法弄清楚如何判断是否收到了帖子数据,$this->input
没有显示任何帖子数据的迹象。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Controller extends CI_Controller {
function __construct(){
parent::__construct();
var_dump($this->router->fetch_class()); // Requested class
var_dump($this->router->fetch_method()); // Requested method
// None of the below shows post data
var_dump($this->input->post());
var_dump($_SERVER);
var_dump($this->input);
var_dump($_POST);
}
}
?>
数据不是必需的,只需要知道发布的数据。