per获取php 的cookie

per获取php 的cookie

  我能过php设置了一个setcookie('username','123456'); username的值,如果我想通过perl应该怎么获取呢?

谢谢!


[Copy to clipboard] [ - ]
CODE:
SetCookie("jigou", $ins1['ins'], time()+3600, "/member", "163.com", 1);  这是我在php 中设的
my $cookie_username = new CGI::Cookie(
          -domain => '163.com',
          -name => 'username2',
          -value => $username,
          -path => 'member',
          -secure => '1'
         );
        my $cookie_password = new CGI::Cookie(
          -domain => '163.com',
          -name => 'jigou',
          -value => $jigou,
          -path => 'member',
          -secure => '1'
        );
        print $cgi->header(-cookie=>[$cookie_username,$cookie_password],
                           -charset=>'gb2312'
            );

我这样不知道对不对

%cookies = fetch CGI::Cookie;
http://search.cpan.org/~lds/CGI.pm-3.33/CGI/Cookie.pm
直接fetch就行了...