PHP session id()

Jmnote bot (토론 | 기여)님의 2016년 3월 29일 (화) 11:07 판 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))

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 }}