|
Posted by Erwin Moller on 09/21/05 15:37
zurg wrote:
> Does anybody know of a tool/script which would format php
> session files to a more readable form ??
>
> This would be for debugging, now if you have lots of
> stuff in a session, it's a pain to try to find anything
> from the file.
Hi,
SOmething like this could help:
1) Open the file
2) unserialize it into some variable ($mySes)
3)
<pre>
<? var_dump($mySes); ?>
</pre>
That gives a better formatted overview.
Regards,
Erwin Moller
Navigation:
[Reply to this message]
|