preg_replace():参数不匹配,pattern是一个字符串,而replacement是一个数组错误

时间:2015-03-25 09:47:41

标签: laravel-4

public function assignprocessing() {

    $newassignment= new DoctorAppointment();
    $newassignment->doctor_id=Session::get('doctorid');
    $newassignment->patient_id=Session::get('users.id');
    $newassignment->appointment_id=Session::get('appoint');
    $newassignment->save();

    if ($newassignment->save()) {
        return View::make('hospital.appointments');
    }
}

我正在使用我在另一个查询中检索到的值,而不是重新编写它们,我使用Session::set来保存值,然后使用' Session :: get'要在上面的查询中检索它们,我得到错误参数不匹配

0 个答案:

没有答案