Session Flashcards

1
Q

세션에다 50 포인트를 저장하려면

A

session()->put(‘points’, 50)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

세션에서 포인트를 가져오려면

A

session()->get(‘points’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

세션에 배열을 추가하려면

A

session()->push(‘dog’, ‘cat’);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

세션에 포인트가 있는지 확인하려면

A
if(session()->has('points')) {
//
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

세션에 포인트의 값이 있는지 확인하려면

A
if(session()->exists('points')) {
        //
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly