|
NAMEApache::Session::PHP - glues Apache::Session with PHP::Session SYNOPSIS use Apache::Session::PHP;
tie %session, 'Apache::Session::PHP', $sid, {
SavePath => '/var/sessions',
};
DESCRIPTIONApache::Session::PHP is an adapter of Apache::Session for PHP::Session. It uses following combination of strategies:
NOTEPHP does NOT have distinction between hash and array. Thus PHP::Session restores PHP array as Perl hash. Perl => PHP => Perl array array hash Thus if you store array in sessions, what'll come back is hash. AUTHORTatsuhiko Miyagawa <miyagawa@bulknews.net> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOApache::Session, PHP::Session
|