10 2020 档案
摘要:function checkPhone($phone) { $check = '/^(1(([3456789][0-9])|(47)))\d{8}$/'; if (preg_match($check, $phone)) { return true; } else { return false; }
阅读全文
摘要:$list = $this->model ->where('FIND_IN_SET(:id,members)', ['id' => $member_id]) ->field('id,title,image,tips,collection,members') ->order('createtime d
阅读全文