왕 기초 테스트 > 자유게시판

자유게시판

왕 기초 테스트 정보

왕 기초 테스트

본문

왕 기초 테스트입니다.
전 세계에 배포하는 솔루션이라고 했를때
어떤 값이 나올까요?
 
$_SESSION["USERID"] = "bengi";
.................
.................
.................
$USERID = "sir";
.................
.................
echo $_SESSION["USERID"];
 
 
 
추천
0
  • 복사

댓글 4개

[ 해답 ]

위치 : http://php.net/manual/en/reserved.variables.session.php

Please note that if you have register_globals to On, global variables associated to $_SESSION variables are references, so this may lead to some weird situations.

<?php

 session_start();

$_SESSION['test'] = 42;
$test = 43;
 echo $_SESSION['test'];

?>

 Load the page, OK it displays 42, reload the page... it displays 43.

 The solution is to do this after each time you do a session_start() :

<?php

if (ini_get('register_globals'))
 {
    foreach ($_SESSION as $key=>$value)
    {
        if (isset($GLOBALS[$key]))
            unset($GLOBALS[$key]);
    }
 }

?>


---------------------------------------------------

미국에서 구매한 솔루션이라고 하기에
믿었건만....

정답은 JMoon 님....^-^
© SIRSOFT
현재 페이지 제일 처음으로