Thread Wide character in Compress::Raw::Zlib::crc32
(16 answers)
Opened by John Doe at 2011-05-23 12:50
Aber wenn man das macht kommt eine andere komische Fehlermeldung:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/perl -w use strict; use warnings; use WWW::Mechanize; use Compress::Raw::Zlib; my ($d, $status) = new Compress::Raw::Zlib::Deflate ( -CRC32 => 1, ) ; my $mech = WWW::Mechanize->new(); $mech->get( 'http://audiologie-phoniatrie.charite.de/forschung/schwerpunkte/phaenotypische_variablitaet_pathologischer_kommunikation/forschungsprojekte/metas/impressum' ); my $crc; { use bytes; $crc = sprintf( '%x', $d->crc32( $mech->content() ) ); } print $crc, "\n"; ergibt: Code: (dl
)
Usage: Compress::Raw::Zlib::deflateStream::crc32(s) at test.pl line 12. Dieses deflateStream ist nicht dokumentiert auf CPAN, kann ich nichts mit anfangen. Aber vielleicht hilft es dir weiter? 10 print "Hallo"
20 goto 10 |