douzi1986 2018-11-19 10:54
浏览 85
已采纳

如何将数据库中的ip地址值拆分为CodeIgniter中的数组格式

I'm working on the CodeIgniter application where I want to split IP address into the array format. Actually, I'm getting values from the database column but unable to create the array from the dynamic values which are getting from the database?

Controller Code

Getting Values from the database 

$system = $this->Xin_model->read_enter_allow_ip_address_info(1);
$allowlist =  array($system[0]->enter_allow_ip_address);
$finalipallow = nl2br($allowlist);

if(!in_array($_SERVER['REMOTE_ADDR'],$finalipallow)){
$Return['error'] = 'Login Failed';  
$this->output($Return); 
}

Models Query

public function read_enter_allow_ip_address_info($id) {

    $condition = "setting_id =" . "'" . $id . "'";
    $this->db->select('enter_allow_ip_address');
    $this->db->from('xin_system_setting');
    $this->db->where($condition);
    $this->db->limit(1);
    $query = $this->db->get();      
    return $query->result();
}

Dynamic Values From The Database Column

'10.0.0.1','10.0.0.2','10.0.0.3','::1'

how do I split IP address values from database into the array format like this static array

$finalipallow = array(
        '10.0.0.1',
        '10.0.0.2',
        '10.0.0.3',
        '::1'
);

I have a static array which is working with if condition but I want to convert dynamic values into the array like the static array?

Working now here the solution of it

$system = $this->Xin_model->read_enter_allow_ip_address_info(1);
$allowlist =  $system[0]->enter_allow_ip_address;

$finalipallow = str_getcsv($allowlist, ",", "'");

if(!in_array($_SERVER['REMOTE_ADDR'],$finalipallow)){
   $Return['error'] = 'Login Failed';   
   $this->output($Return);  
}
  • 写回答

2条回答 默认 最新

  • duangouhui0446 2018-11-19 10:58
    关注

    You can use str_getcsv() to process it as a CSV record...

    $data = "'10.0.0.1','10.0.0.2','10.0.0.3','::1'";
    $finalipallow = str_getcsv($data, ",", "'");
    
    print_r($finalipallow);
    

    which outputs...

    Array
    (
        [0] => 10.0.0.1
        [1] => 10.0.0.2
        [2] => 10.0.0.3
        [3] => ::1
    )
    

    Just change $data to the value from the database. Using the deimter and the optional enclosed parameters allows it to strip off the extra quotes from the data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 系统 24h2 专业工作站版,浏览文件夹的图库,视频,图片之类的怎样删除?
  • ¥15 怎么把512还原为520格式
  • ¥15 MATLAB的动态模态分解出现错误,以CFX非定常模拟结果为快照
  • ¥15 求高通平台Softsim调试经验
  • ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
  • ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
  • ¥15 栅极驱动低侧烧毁MOSFET
  • ¥30 写segy数据时出错3
  • ¥100 linux下qt运行QCefView demo报错
  • ¥50 F1C100S下的红外解码IR_RX驱动问题