Commit 12db9a57 authored by chenchuanwen's avatar chenchuanwen

iperror

parent afcab0d6
......@@ -6,12 +6,12 @@ class IndexController extends \Our\Controller_Abstract {
public $memberId;
public $messageService;
public function init(){
$valid_ip = array('192.168.1.80','192.168.1.211','106.14.14.233','47.99.100.113','47.97.168.24');
$client_ip = $_SERVER['REMOTE_ADDR'];
if ( ! in_array($client_ip, $valid_ip))
{
throw new \Exception('ip error!!!');
}
// $valid_ip = array('192.168.1.80','192.168.1.211','106.14.14.233','47.99.100.113','47.97.168.24');
// $client_ip = $_SERVER['REMOTE_ADDR'];
// if ( ! in_array($client_ip, $valid_ip))
// {
// throw new \Exception('ip error!!!');
// }
}
public function is_https() {
if ( !empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment