Laravel [Notice: Use of undefined constant]

Notice: Use of undefined constant

今回はNotice: Use of undefined constantエラーを解決しました。初歩的エラー感ありますね、、、(笑)

public function post(Request $request)
	{
		return view('hello.index', ['msg'=>$request.msg]);
	}

いつも書いているコードの癖で、$request.msg というように「.」で繋いでいました。正しくは

$request->msg

ですね。ケアレ・スミス。


参考

「Notice: Use of undefined constant」と表示されるとき「Notice: Use of undefined constant」は直訳すると「未定義の定数を使った」ですが、ほとんどの場合、深く考える必要はありません。単純な入力ミスです。以下、原因と対策を紹介します。入力ミスで「Use of undphp1st.

← Go home