init
All checks were successful
Deploy to Production / deploy (push) Successful in 14s

This commit is contained in:
珂珂 2024-11-15 18:11:25 +08:00
parent d35041b512
commit 00106c3110

View File

@ -63,6 +63,11 @@ public function action_push2contact()
return !in_array($item->mobile, $sendItems);
});
// 去除中文名字长度大于3的数据
// $items = $items->filter(function ($item) {
// return !$this->filterDirtyName($item->name);
// });
// 联系人
$contacts = Contact::query()
->where('status', Contact::STATUS_PUBLISHED)
@ -76,7 +81,7 @@ public function action_push2contact()
// 分配数据
foreach ($items as $item) {
if (mb_strlen($item->name) > 6) {
if (mb_strlen($item->name) >= 6) {
info("试驾数据 {$item->id} 姓名异常 {$item->name}");
$this->info("试驾数据 {$item->id} 姓名异常 {$item->name}");
$item->update(['status' => Testdrive::STATUS_REJECTED]);
@ -137,4 +142,12 @@ public function action_contact_add()
$this->info('Contact added');
}
protected function filterDirtyName($str, $max = 3)
{
if (!preg_match('/^[\x{4e00}-\x{9fa5}]+$/u', $str)) {
return false;
}
return mb_strlen($str) > $max;
}
}