"라라벨 csrf token()"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
{{#DISPLAYTITLE:라라벨 csrf_token()}}
{{DISPLAYTITLE:라라벨 csrf_token()}}
==개요==
==개요==
;라라벨 csrf_token()
;라라벨 csrf_token()

2017년 8월 23일 (수) 07:21 판

1 개요

라라벨 csrf_token()
function csrf_token()
{
    $session = app('session');
    if (isset($session)) {
        return $session->token();
    }
    throw new RuntimeException('Application session store not set.');
}

2 같이 보기

3 참고

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