"라라벨 session()"의 두 판 사이의 차이

35번째 줄: 35번째 줄:
* https://github.com/laravel/framework/blob/master/src/Illuminate/Foundation/helpers.php
* https://github.com/laravel/framework/blob/master/src/Illuminate/Foundation/helpers.php


[[분류: 국사]]
[[분류: Laravel 함수]]
[[분류: 세계사]]
[[분류: 명사]]
[[분류: 명사]]

2017년 10월 7일 (토) 02:01 판

1 개요

라라벨 session()
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);
}
$value = session('key');
session(['chairs' => 7, 'instruments' => 3]);
$value = session()->get('key');
session()->put('key', $value);


2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}