|
...
|
...
|
@@ -314,11 +314,12 @@ class RelayInquiry extends Command |
|
|
|
|
|
|
|
foreach ($random_data as $item) {
|
|
|
|
//手机号过滤
|
|
|
|
$phone = $form->phone;
|
|
|
|
$filter_phone = $this->get_rand($this->filter_phone);
|
|
|
|
if($filter_phone == 0){
|
|
|
|
$form->phone = trim(str_replace("+", '', $form->phone));
|
|
|
|
$phone = trim(str_replace("+", '', $phone));
|
|
|
|
}elseif($filter_phone == 1){
|
|
|
|
$form->phone = '';
|
|
|
|
$phone = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// 推送站点
|
|
...
|
...
|
@@ -456,7 +457,7 @@ class RelayInquiry extends Command |
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// 写入推送详情
|
|
|
|
$re_detail = ReInquiryDetail::createInquiry($task['id'], $form->id, $domain, $country_name, $ip, $form->full_name, $form->email, $form->phone, $message, $message_id, $device_port,
|
|
|
|
$re_detail = ReInquiryDetail::createInquiry($task['id'], $form->id, $domain, $country_name, $ip, $form->full_name, $form->email, $phone, $message, $message_id, $device_port,
|
|
|
|
$user_agent, $referrer, $urls, $is_v6, date('Y-m-d H:i:s', $start_time + $seconds));
|
|
|
|
foreach ($urls as $k=>$v){
|
|
|
|
$pre++;
|
...
|
...
|
|