PHP session_id()

1 개요[ | ]

PHP session_id()
  • 세션ID를 조회·변경하는 PHP 함수

2 실습 1[ | ]

<?php
session_start(); // 세션 ID 발급됨
echo session_id(); // 세션 ID 출력
// tht6wlhgofxctwyoeieu1mzig1

3 실습 2[ | ]

<?php
session_start();
session_id('hello');
echo session_id(); // hello
→ hello같이 단순한 세션ID도 설정 가능하다.

서버측에서 확인해보면...

[root@zetawiki session]# ll | grep hello -A3
-rw------- 1 apache apache   0 Jul  5 10:38 sess_hello
-rw------- 1 apache apache   0 Jul  5 10:22 sess_r64fuo0fkm32ib2yufjeieh9n3
-rw------- 1 apache apache   0 Jul  5 09:54 sess_tht6wlhgofxctwyoeieu1mzig1
-rw------- 1 apache apache   0 Jul  5 10:23 sess_u11l33e8a14shz92fohe8gv9r8

4 같이 보기[ | ]

5 참고[ | ]

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