> 백엔드 개발 > PHP 튜토리얼 > PHP 기능 세션 메커니즘 2 - 세션 및 사용

PHP 기능 세션 메커니즘 2 - 세션 및 사용

黄舟
풀어 주다: 2023-03-05 11:54:02
원래의
1542명이 탐색했습니다.

PHP에서는 세션 메커니즘(Session)을 사용하여 동시 액세스 시 일부 데이터를 저장합니다. 이는 보다 사용자 친화적인 프로그램을 만들고 사이트의 매력을 높이는 데 도움이 될 수 있습니다.
귀하의 웹사이트 방문자에게는 세션 ID라고 하는 고유 ID가 할당됩니다. 이 ID는 사용자 측의 쿠키에 저장되거나 URL을 통해 전달될 수 있습니다.
세션 지원을 통해 세션 ID를 저장할 수 있습니다. 방문자가 귀하의 사이트를 방문하면 PHP는 자동으로(session.auto_start가 1로 설정된 경우) 또는 귀하의 요청에 따라(명시적으로 session_start()를 통해 또는 암시적으로 session_register()를 통해) 확인합니다. 현재 세션 ID가 이전에 전송된 요청에 의해 생성된 경우, 이전에 저장된 환경이 다시 구축됩니다.
$_SESSION(및 등록된 모든 변수)은 내장된 직렬화 방법입니다. 요청이 완료되면 직렬화를 수행합니다. 직렬화 방법은 session.serialize_handler PHP 구성 옵션을 통해 지정될 수 있습니다. 정의되지 않은 변수는 동시 액세스 중에 정의되지 않은 것으로 표시됩니다. 사용자가 나중에 정의하지 않는 한 세션 모듈입니다.
세션 데이터가 직렬화되므로 리소스 변수는 세션에 저장될 수 없습니다. 직렬화 핸들(php 및 php_binary)에는 또한 특수 문자(| 및 !)가 포함됩니다. 숫자 또는 문자열 인덱스에서는 사용할 수 없습니다. 이러한 문자를 사용하면 스크립트 실행을 닫을 때 오류가 발생합니다. php_serialize에는 이러한 제한이 없습니다.
예제 1, 세션의 간단한 사용:

<?php  
//注册session  
session_start();  
if (!isset($_SESSION[&#39;count&#39;])) {  
    $_SESSION[&#39;count&#39;] = 0;  
} else {  
    $_SESSION[&#39;count&#39;]++;  
}  
  
//删除session  
unset($_SESSION[&#39;count&#39;]);  
?>
로그인 후 복사

세션 관련 함수:

session_cache_expire — Return current cache expire
session_cache_limiter — Get and/or set the current cache limiter
session_commit — session_write_close 的别名
session_decode — Decodes session data from a session encoded string
session_destroy — Destroys all data registered to a session
session_encode — 将当前会话数据编码为一个字符串
session_get_cookie_params — Get the session cookie parameters
session_id — Get and/or set the current session id
session_is_registered — 检查变量是否在会话中已经注册
session_module_name — Get and/or set the current session module
session_name — Get and/or set the current session name
session_regenerate_id — Update the current session id with a newly generated one
session_register_shutdown — Session shutdown function
session_register — Register one or more global variables with the current session
session_save_path — Get and/or set the current session save path
session_set_cookie_params — Set the session cookie parameters
session_set_save_handler — Sets user-level session storage functions
session_start — Start new or resume existing session
session_status — Returns the current session status
session_unregister — Unregister a global variable from the current session
session_unset — Free all session variables
session_write_close — Write session data and end session
로그인 후 복사

위는 PHP 기능 중 세션 메커니즘 2 - 세션 및 사용법입니다. 더 많은 관련 내용을 보려면 PHP에 주의하세요. 중국사이트(www.php.cn)!


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿