| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib64/perl5/vendor_perl/PerlIO/ |
Upload File : |
package PerlIO::utf8_strict; $PerlIO::utf8_strict::VERSION = '0.008'; 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.008 =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