PHP 在CodeIgniter中阻止对CRON作业脚本的公共访问

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在CodeIgniter中阻止对CRON作业脚本的公共访问相关的知识,希望对你有一定的参考价值。

1.)
$this->load->library('user_agent');
        if( $this->agent->is_browser() or $this->agent->is_robot() or $this->agent->is_mobile()):
            exit('You may not access this file.');
        endif;

2.)
if($this->session->userdata('ip_address') != $this->input->server('SERVER_ADDR')) { die(); }

以上是关于PHP 在CodeIgniter中阻止对CRON作业脚本的公共访问的主要内容,如果未能解决你的问题,请参考以下文章

阻止公共访问CodeIgniter中的CRON作业脚本

CodeIgniter + 命令行 + Cron + Cpanel

cron 作业不适用于 codeigniter 2.2.5

如何为codeigniter设置cron作业url?

Mysql 查询在 Codeigniter 中返回空结果,但在本机 PHP 中工作正常

阻止用户访问我的 cron 作业脚本