ふたりはララベル (Laravel PHP Framework)

PHPフレームワークのLaravelの体験記を書いていきます。こんなタイトルのブログですが萌え系アニメは一秒たりとも観たことがありません。

Laravelのクッキーをセットする

Laravelのクッキーは「Cookie::make」としただけではセットできない。ResponseにwithCookie()をつけて初めてセットできる。

$cookie = Cookie::make('testcookie', 'hello, world', 1);

return Response::make($contents)->withCookie($cookie);

withCookieはRedirectにつけることもできる。

return Redirect::to('then')->withCookie($cookie);

複数のクッキーを付けたいときはwithCookieを重ねる。

return Response::make($contents)->withCookie($cookie1)->withCookie($cookie2);