Thread Cookie Informationen gehen verloren (8 answers)
Opened by Onkel_Tuka at 2012-04-24 18:34

topeg
 2012-04-24 19:50
#157830 #157830
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Kann ich nicht nachvollziehen:

test.pl
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl
use strict;
use warnings;
use module::Modul1;

print qq(Set-Cookie: test="Etwas Text" \r\n);
print "Content-Type: text/plain\r\n\r\n";

print Funktion1();


module/Modul1.pm
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
package module::Modul1;
use base 'Exporter';
our @EXPORT=qw(Funktion1);
use module::Modul2;
use Data::Dumper;

sub Funktion1 { return Dumper({ Funktion2() }); }

1;


module/Modul2.pm
Code (perl): (dl )
1
2
3
4
5
6
7
8
package module::Modul2;
use base 'Exporter';
our @EXPORT=qw(Funktion2);
use CGI::Cookie;

sub Funktion2 { return CGI::Cookie->fetch(); }

1;


Aufruf: http://localhost/cgi-bin/tests/test.pl
Ausgabe:
Code: (dl )
1
2
3
4
5
6
7
8
9
$VAR1 = {
'test' => bless( {
'value' => [
'"Etwas Text"'
],
'name' => 'test',
'path' => '/'
}, 'CGI::Cookie' )
};


Was hast du anders gemacht?

View full thread Cookie Informationen gehen verloren