+ 2
PHP Session format
Saves data as files with PHP SESSION. So far ok, but does this format fit any layout (e.g. JSON, XML, YAML) format? key:data;| key:data;| object:{}|
6 Answers
+ 1
I thing JSON fit : look to www.php.net
+ 1
VĂĄclav DostĂĄl That's what I thought, but json Does not support ;
0
echo json_encode($_SESSION);
0
stackowerflow.com/question/5374368/serialise-php-session-variables-into-json-format
0
VĂĄclav DostĂĄl You don't understand me, this series I'm counting on python to want to read this session.
0
I see you have some project with php session and you need read this session somewhere else. This is tough.