Page 1 of 1

session values

Posted: Sun Jul 25, 2004 5:59 am
by pelegk2
i opened a session file and so it's written :

Code: Select all

<?php
login|i:3;
?>
what the (i) stands for?for int?

Posted: Sun Jul 25, 2004 8:24 am
by Buddha443556
I think it's an integer.

s:n - strings (n is string length)
a:n - arrays (n is number of elements)

Posted: Sun Jul 25, 2004 11:41 am
by feyd
the stuff between the pipe and semicolon is a [php_man]serialize[/php_man]d variable, the variables name is the information before the pipe.. and yes, i is for integer.