1 개요
- 라라벨 session()
- 세션 값을 조회하거나 설정하는 라라벨 헬퍼 함수
PHP
Copy
function session($key = null, $default = null)
{
if (is_null($key)) {
return app('session');
}
if (is_array($key)) {
return app('session')->put($key);
}
return app('session')->get($key, $default);
}
PHP
Copy
$value = session('key');
PHP
Copy
session(['chairs' => 7, 'instruments' => 3]);
PHP
Copy
$value = session()->get('key');
session()->put('key', $value);
2 같이 보기
3 참고
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.