> 백엔드 개발 > PHP 튜토리얼 > [php] serialize, unserialize the session data in PHP

[php] serialize, unserialize the session data in PHP

WBOY
풀어 주다: 2016-06-23 14:35:37
원래의
1197명이 탐색했습니다.

As we know, in PHP, we can use session_encode() and session_decode() to encode/decode the session data, but, if you have tried these two 

functionality, you will see the they are not going as you think. So here, i find these two functionality which will help you to do that.

 

     /* *
     * serialize session
     * 
     * @param array $data
     * @param boolean $safe
     * @return string 
      */
     function serialize_session( $array,  $safe =  true)
    {
         //  the session is passed as refernece, even if you dont want it to
         if ( $safe)
        {
             $array =  unserialize( serialize( $array));
        }

         $raw = '';
         $line = 0;
         $keys =  array_keys( $array);
         foreach ( $keys  as  $key)
        {
             $value =  $array[ $key];
             $line++;
             $raw .=  $key . '|';
             if ( is_array( $value) &&  isset( $value['huge_recursion_blocker_we_hope']))
            {
                 $raw .= 'R:' .  $value['huge_recursion_blocker_we_hope'] . ';';
            }
             else
            {
                 $raw .=  serialize( $value);
            }
             $array[ $key] =  Array('huge_recursion_blocker_we_hope' =>  $line);
        }

         return  $raw;
    }
    
     /* *
     * unserialize session
     * 
     * @param string $data
     * @return array 
      */
     function unserialize_session( $data)
    {
         $vars =  preg_split('/([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff^|]*)\|/',  $data, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
         for ( $i = 0;  $vars[ $i];  $i++)
        {
             $result[ $vars[ $i++]] =  unserialize( $vars[ $i]);
        }
         return  $result;
    }

 

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