Commit fe0a28cd authored by zhuwei's avatar zhuwei

1

parent cc328b52
......@@ -177,4 +177,13 @@ function del_array_string($string = '', $array_str = []) {
}
}
return $array_str;
}
/**
* 独立记录日志文件
* @param $content
*/
function big_log($content){
$filename = ROOT_PATH.'runtime/log/find_bug.log';
file_put_contents($filename, $content."\r\n", FILE_APPEND);
}
\ No newline at end of file
......@@ -178,15 +178,8 @@ class ImageDepot extends Basic
}
public function ceshi(){
//查询客户是否在保护期内
//判断客户是否超过24小时保护期间 0:保护器内 1:超过保护期
$vip_services = new VipService();
//是否可以查看vip客户 0:可查看 1:不可查看
$agent_id = 51;
$group_id = '2,3,4,5';
$res = $vip_services->getGroup($agent_id, $group_id);
dump($res);
$content = '99888888';
big_log($content);
}
}
......
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