如何在laravel中的函数中获取出生日期参数?

问题描述 投票:0回答:1

我的观点代码是

<div class="form-group {!! $errors->has('date_of_birth') ? 'has-error' : '' !!}">
{!! Form::label('date_of_birth', 'Date of Birth', ['class' => 'control-label']) !!}
<div class="form-inline">
{!! Form::selectRange('date_of_birth[day]', 1, 31, null, ['class' => 'selectbody fl']) !!}
{!! Form::selectMonth('date_of_birth[month]', null, ['class' => 'selectbody fl']) !!}
{!! Form::selectYear('date_of_birth[year]', date('Y') - 3, date('Y') - 40, null, ['class' => 'selectbody fl']) !!}
</div>
{!! $errors->first('date_of_birth', '<span class="help-block">:message</span>') !!}
</div>

在这里,我得到这些参数,我得到阵列中的DOB

    public function signupme(Request $request)
    {
    $date_of_birth=$request->date_of_birth;
    print_r('$date_of_birth');
    }

定义列以保存DOB

    $data= array(
     "mybirthday"=>$date_of_birth,
    );

保存在数据库中

    if(DB::table('userspathik')->insert($data))
    {
    return redirect('signup')->with("success","You are registered");
    }
php laravel laravel-5 database-design
1个回答
0
投票

你应该更清楚这个问题。所以我的理解是你有一天,一个月和一年的单独列。提交表单时,您希望将这些字段保存在数据库的单个“日期时间”列中。

我不知道你正在使用什么样的laravel版本,但我希望它是最新版本。

我建议您使用单个日期输入字段并使用strtotimeCarbon进行解析,这样您就可以使用date, date_format, before, after等laravel验证方法对其进行验证。以下是示例:

public function signMeUp(Request $request)
{
    $validatedInput = $request->validate([
       'dob' => 'required|date|date_format:"d/m/Y"'
    ]);

    $dob = $validatedInput['dob'];

    # Parse the date according to format
    $dob = \Carbon\Carbon::createFromFormat('d/m/Y', $dob);

    # Replace with your required model
    $model = new $model();
    $model->$dob;
    $model->save();

    return redirect('/register')->with('status', 'Registration Successful');

}

如果你使用单独的输入字段,如日,月和年,你可以只组合这些字段,如

$dob = $request->get('dob_day').'/'.$request->get('dob_month').'/'.$request->get('dob_year');

你需要单独验证它。你明白了......

© www.soinside.com 2019 - 2024. All rights reserved.