session_encode
Description
The session_encode of Session for PHP encodes the current session data as a session encoded string.
Syntax
session_encode(): string|false
Return
Returns the contents of the current session encoded, or false on failure.
Examples
1 · void
<? session_start(); $_SESSION["mykey1"] = "myvalue1"; $_SESSION["mykey2"] = "myvalue2"; $_SESSION["mykey3"] = "myvalue3"; $return = session_encode(); echo $return; ?>
mykey1|s:8:"myvalue1";mykey2|s:8:"myvalue2";mykey3|s:8:"myvalue3";
Links
Related
Session
- session_abort
- session_cache_expire
- session_cache_limiter
- session_commit
- session_create_id
- session_decode
- session_destroy
- session_gc
- session_get_cookie_params
- session_id
- session_module_name
- session_name
- session_regenerate_id
- session_register_shutdown
- session_reset
- session_save_path
- session_set_cookie_params
- session_set_save_handler
- session_start
- session_status
- session_unset
- session_write_close