field('name')->where( array('id' =>$operation_seller_id ) )->find(); $operation_seller_name ='供应商--'.$items['name']; }else{ $items = M('seller')->field('s_uname')->where( array('s_id' =>$operation_seller_id ) )->find(); $operation_seller_name = '管理员--'.$items['s_uname']; } $ins_data = array(); $ins_data['operation_type'] = $operation_type; $ins_data['operation_seller_id'] = $operation_seller_id; $ins_data['operation_seller_name'] = $operation_seller_name; $ins_data['ip'] = $ip; $ins_data['content'] = $content; $ins_data['addtime'] = time(); M('lionfish_comshop_systemoperation_log')->add($ins_data); } function get_ip_city($ip){ $ch = curl_init(); $url = 'https://whois.pconline.com.cn/ipJson.jsp?ip='.$ip; //用curl发送接收数据 curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //请求为https curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false ); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); $location = curl_exec($ch); curl_close($ch); //转码 $location = mb_convert_encoding($location, 'utf-8','GB2312'); //var_dump($location); //截取{}中的字符串 $location = substr($location, strlen('({')+strpos($location, '({'),(strlen($location) - strpos($location, '})'))*(-1)); //将截取的字符串$location中的‘,’替换成‘&’ 将字符串中的‘:‘替换成‘=’ $location = str_replace('"',"",str_replace(":","=",str_replace(",","&",$location))); //php内置函数,将处理成类似于url参数的格式的字符串 转换成数组 parse_str($location,$ip_location); return $ip_location['addr']; } } ?>