我需要将CI 2中的控制器限制为仅从命令行运行。可以从Web访问应用程序中的其他控制器。
最好的方法是什么?
答案 0 :(得分:16)
您可能需要查看if is a CLI request:
class Mycontroller extends CI_Controller {
function __construct()
{
parent::__construct();
if(!$this->input->is_cli_request())
{
// echo 'Not allowed';
// exit();
}
}
}