����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.119.0.207 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /lib64/perl5/vendor_perl/PerlIO/ |
Upload File : |
package PerlIO::utf8_strict; $PerlIO::utf8_strict::VERSION = '0.007'; use strict; use warnings; use XSLoader; XSLoader::load(__PACKAGE__, __PACKAGE__->VERSION); 1; #ABSTRACT: Fast and correct UTF-8 IO __END__ =pod =encoding UTF-8 =head1 NAME PerlIO::utf8_strict - Fast and correct UTF-8 IO =head1 VERSION version 0.007 =head1 SYNOPSIS open my $fh, '<:utf8_strict', $filename; =head1 DESCRIPTION This module provides a fast and correct UTF-8 PerlIO layer. Unlike perl's default C<:utf8> layer it checks the input for correctness. =head1 LAYER ARGUMENTS =over 4 =item allow_noncharacters =item allow_surrogates =back =head1 EXPORT PerlIO::utf8_strict exports no subroutines or symbols, just a perl layer C<utf8_strict> =head1 DIAGNOSTICS =over 4 =item Can't decode ill-formed UTF-8 octet sequence <%s> (F) Encountered an ill-formed UTF-8 octet sequence. <%s> contains a hexadecimal representation of the maximal subpart of the ill-formed subsequence. =item Can't interchange noncharacter code point U+%.4X (F) Noncharacters is permanently reserved for internal use and that should never be interchanged. Noncharacters consist of the values U+nFFFE and U+nFFFF (where n is from 0 to 10^16) and the values U+FDD0..U+FDEF. =back =head1 AUTHORS =over 4 =item * Leon Timmermans <leont@cpan.org> =item * Christian Hansen <chansen@cpan.org> =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Leon Timmermans, Christian Hansen. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut