Longhorn PHP 2025 - Call For Papers

Voting

: one plus two?
(Example: nine)

The Note You're Voting On

<carlos sica>sica at wnet dot com dot br
20 years ago
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;

<< Back to user notes page

To Top