Skip Menu |

This queue is for tickets about the PHP-Session CPAN distribution.

Report information
The Basics
Id: 74564
Status: new
Priority: 0/
Queue: PHP-Session

People
Owner: Nobody in particular
Requestors: CINDY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.27
Fixed in: (no value)



Subject: Issue about using PHP::Session::Serializer::PHP contigiously
When using PHP::Session::Serializer::PHP to decode contigiously, the former result will remain in the later one as a phantom. test case: #!/usr/bin/perl use strict; use warnings; use Data::Dumper; use PHP::Session::Serializer::PHP; my $decoder = PHP::Session::Serializer::PHP->new; print Dumper($decoder->decode('a|i:1;')); print Dumper($decoder->decode('b|i:2;')); __END__ Expected output: $VAR1 = { 'a' => '1' }; $VAR1 = { 'b' => '2' }; Actually output: $VAR1 = { 'a' => '1' }; $VAR1 = { 'a' => '1', 'b' => '2' };