Session 函数
在线手册:中文  英文

session_encode

(PHP 4, PHP 5)

session_encode将当前会话数据编码为一个字符串

说明

string session_encode ( void )

session_encode() 返回一个序列化后的字符串,包含被编码的、储存于 $_SESSION 超全局变量中的当前会话数据。

请注意,序列方法 和 serialize() 是不一样的。 该序列方法是内置于 PHP 的,能够通过设置 session.serialize_handler 来设置。

返回值

返回当前会话编码后的内容。

注释

Warning

在调用 session_decode() 之前必须先调用 session_start()

参见


Session 函数
在线手册:中文  英文

用户评论:

php dot net at mog dot se (2008-04-08 15:01:08)

session_encode() returns a different format than serialize.
If you want to decode this format in python then "PHP Serialize implemented in Python" has special handling of this format using the session_encode and session_decode methods.
http://www.hurring.com/scott/code/python/serialize/

php at mikeboers dot com (2007-07-14 11:31:11)

If anybody wants to encode any arbitrary array in the session serialization style, I have come up with the following function ( along with a corresponding decoding function in the session_decode notes ) to do just that.

Note the step I take to make sure we are not using a reference of the array, because calling session_raw_encode( $_SESSION ) ; will modify the real session when doing the recursion checks.

<?php

function session_raw_encode$array$safe true ) {
    
    
// the session is passed as refernece, even if you dont want it to
    
if( $safe )
        
$array unserialize(serialize$array )) ;

    
    
$raw '' ;
    
$line ;
    
$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 ;
    
}

?>

Onur Yerlikaya < http://www.witkey.org > (2006-07-18 20:21:55)

<?php
session_start
();
# boolean type
$_SESSION['logged']     = true;
# string type
$_SESSION['name']    = "Onur Yerlikaya";
# integer type
$_SESSION['age']     = 17;

// logged|b:1;name|s:14:"Onur Yerlikaya";age|i:17;

function readSessions() {
    
$encodedData    session_encode();
    
$explodeIt    explode(";",$encodedData);
    for(
$i=0;$i<count($explodeIt)-1;$i++) {
        
$sessGet    explode("|",$explodeIt[$i]);
        
$sessName[$i]    = $sessGet[0];
        if(
substr($sessGet[1],0,2) == "s:") {
            
$sessData[$i]    = str_replace("\"","",strstr($sessGet[1],"\""));
        } else {
            
$sessData[$i]    = substr($sessGet[1],2);
        } 
// end if
    
// end for
    
$result        array_combine($sessName,$sessData);
    return 
$result;
}    

/*
readSessions Func shows encoded data in array
Array
(
    [logged] => 1
    [name] => Onur Yerlikaya
    [age] => 17
)
*/
print_r(readSessions());
?>

<carlos sica>sica at wnet dot com dot br (2005-05-05 09:19:33)

session_encode() just return the session dataset in a formatted form
session_start();
$_SESSION['login_ok'] = true;
$_SESSION['nome'] = 'sica';
$_SESSION['inteiro'] = 34;
echo session_encode();
this code will print
login_ok|b:1;nome|s:4:"sica";inteiro|i:34;

易百教程