Commit d7f279e7 authored by fangliyan's avatar fangliyan

dd

parent dc0a35bd
......@@ -1128,7 +1128,16 @@ class User_model extends MY_Model
//获取虚拟号码
foreach($collect_array as &$value){
$collect_value = unserialize($value['collect_value']);
//转化成utf-8
$collect_value = mb_convert_encoding($value['collect_value'], 'UTF-8', 'GBK');
$collect_value = unserialize($collect_value);
if($collect_value){
//转化成gbk
foreach ($collect_value as $key => $a) {
$collect_value[$key] = mb_convert_encoding($a, 'GBK', 'UTF-8');
}
}
if(is_array($collect_value)){
if($collect_value['infofrom'] == 5){
if($city == 'nj'){
......
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