사용자 세션 핸들러

데이터베이스 저장을 구현하거나, 다른 저장 방법을 사용하기 위하여, session_set_save_handler()를 사용하여 사용자 단계 저장 함수를 생성할 수 있습니다.

add a note add a note

User Contributed Notes 1 note

up
-17
tony at marston-home dot demon dot co dot uk
5 years ago
Your custom session handler should not contain calls to any of the session functions, such as session_name() or session_id(), as the relevant values are passed as arguments on various handler methods. Attempting to obtain values from alternative sources may not work as expected.
To Top