📄 encoding.3
字号:
Note that \s-1STDERR\s0 \s-1WILL\s0 \s-1NOT\s0 be changed..SpAlso note that non-STD file handles remain unaffected. Use \f(CW\*(C`useopen\*(C'\fR or \f(CW\*(C`binmode\*(C'\fR to change layers of those..SpIf no encoding is specified, the environment variable \s-1PERL_ENCODING\s0is consulted. If no encoding can be found, the error \f(CW\*(C`Unknown encoding\&\*(Aq\f(CIENCNAME\f(CW\*(Aq\*(C'\fR will be thrown..IP "use encoding \fI\s-1ENCNAME\s0\fR [ \s-1STDIN\s0 => \fI\s-1ENCNAME_IN\s0\fR ...] ;" 4.IX Item "use encoding ENCNAME [ STDIN => ENCNAME_IN ...] ;"You can also individually set encodings of \s-1STDIN\s0 and \s-1STDOUT\s0 via the\&\f(CW\*(C`STDIN => \f(CIENCNAME\f(CW\*(C'\fR form. In this case, you cannot omit thefirst \fI\s-1ENCNAME\s0\fR. \f(CW\*(C`STDIN => undef\*(C'\fR turns the \s-1IO\s0 transcodingcompletely off..SpWhen ${^UNICODE} exists and non-zero, these options will completelyignored. ${^UNICODE} is a variable introduced in perl 5.8.1. Seeperlrun see \*(L"${^UNICODE}\*(R" in perlvar and \*(L"\-C\*(R" in perlrun fordetails (perl 5.8.1 and later)..IP "use encoding \fI\s-1ENCNAME\s0\fR Filter=>1;" 4.IX Item "use encoding ENCNAME Filter=>1;"This turns the encoding pragma into a source filter. While thedefault approach just decodes interpolated literals (in \fIqq()\fR and\&\fIqr()\fR), this will apply a source filter to the entire source code. See\&\*(L"The Filter Option\*(R" below for details..IP "no encoding;" 4.IX Item "no encoding;"Unsets the script encoding. The layers of \s-1STDIN\s0, \s-1STDOUT\s0 arereset to \*(L":raw\*(R" (the default unprocessed raw stream of bytes)..SH "The Filter Option".IX Header "The Filter Option"The magic of \f(CW\*(C`use encoding\*(C'\fR is not applied to the names ofidentifiers. In order to make \f(CW\*(C`${"\ex{4eba}"}++\*(C'\fR ($human++, where humanis a single Han ideograph) work, you still need to write your scriptin \s-1UTF\-8\s0 \*(-- or use a source filter. That's what 'Filter=>1' does..PPWhat does this mean? Your source code behaves as if it is written in\&\s-1UTF\-8\s0 with 'use utf8' in effect. So even if your editor only supportsShift_JIS, for example, you can still try examples in Chapter 15 of\&\f(CW\*(C`Programming Perl, 3rd Ed.\*(C'\fR. For instance, you can use \s-1UTF\-8\s0identifiers..PPThis option is significantly slower and (as of this writing) non-ASCIIidentifiers are not very stable \s-1WITHOUT\s0 this option and with thesource code written in \s-1UTF\-8\s0..Sh "Filter-related changes at Encode version 1.87".IX Subsection "Filter-related changes at Encode version 1.87".IP "\(bu" 4The Filter option now sets \s-1STDIN\s0 and \s-1STDOUT\s0 like non-filter options.And \f(CW\*(C`STDIN=>\f(CIENCODING\f(CW\*(C'\fR and \f(CW\*(C`STDOUT=>\f(CIENCODING\f(CW\*(C'\fR work likenon-filter version..IP "\(bu" 4\&\f(CW\*(C`use utf8\*(C'\fR is implicitly declared so you no longer have to \f(CW\*(C`useutf8\*(C'\fR to \f(CW\*(C`${"\ex{4eba}"}++\*(C'\fR..SH "CAVEATS".IX Header "CAVEATS".Sh "\s-1NOT\s0 \s-1SCOPED\s0".IX Subsection "NOT SCOPED"The pragma is a per script, not a per block lexical. Only the last\&\f(CW\*(C`use encoding\*(C'\fR or \f(CW\*(C`no encoding\*(C'\fR matters, and it affects \&\fBthe whole script\fR. However, the <no encoding> pragma is supported and \&\fBuse encoding\fR can appear as many times as you want in a given script. The multiple use of this pragma is discouraged..PPBy the same reason, the use this pragma inside modules is alsodiscouraged (though not as strongly discouraged as the case above. See below)..PPIf you still have to write a module with this pragma, be very carefulof the load order. See the codes below;.PP.Vb 5\& # called module\& package Module_IN_BAR;\& use encoding "bar";\& # stuff in "bar" encoding here\& 1;\&\& # caller script\& use encoding "foo"\& use Module_IN_BAR;\& # surprise! use encoding "bar" is in effect..Ve.PPThe best way to avoid this oddity is to use this pragma \s-1RIGHT\s0 \s-1AFTER\s0other modules are loaded. i.e..PP.Vb 2\& use Module_IN_BAR;\& use encoding "foo";.Ve.Sh "\s-1DO\s0 \s-1NOT\s0 \s-1MIX\s0 \s-1MULTIPLE\s0 \s-1ENCODINGS\s0".IX Subsection "DO NOT MIX MULTIPLE ENCODINGS"Notice that only literals (string or regular expression) having onlylegacy code points are affected: if you mix data like this.PP.Vb 1\& \exDF\ex{100}.Ve.PPthe data is assumed to be in (Latin 1 and) Unicode, not in your nativeencoding. In other words, this will match in \*(L"greek\*(R":.PP.Vb 1\& "\exDF" =~ /\ex{3af}/.Ve.PPbut this will not.PP.Vb 1\& "\exDF\ex{100}" =~ /\ex{3af}\ex{100}/.Ve.PPsince the \f(CW\*(C`\exDF\*(C'\fR (\s-1ISO\s0 8859\-7 \s-1GREEK\s0 \s-1SMALL\s0 \s-1LETTER\s0 \s-1IOTA\s0 \s-1WITH\s0 \s-1TONOS\s0) onthe left will \fBnot\fR be upgraded to \f(CW\*(C`\ex{3af}\*(C'\fR (Unicode \s-1GREEK\s0 \s-1SMALL\s0\&\s-1LETTER\s0 \s-1IOTA\s0 \s-1WITH\s0 \s-1TONOS\s0) because of the \f(CW\*(C`\ex{100}\*(C'\fR on the left. Youshould not be mixing your legacy data and Unicode in the same string..PPThis pragma also affects encoding of the 0x80..0xFF code point range:normally characters in that range are left as eight-bit bytes (unlessthey are combined with characters with code points 0x100 or larger,in which case all characters need to become \s-1UTF\-8\s0 encoded), but ifthe \f(CW\*(C`encoding\*(C'\fR pragma is present, even the 0x80..0xFF range alwaysgets \s-1UTF\-8\s0 encoded..PPAfter all, the best thing about this pragma is that you don't have toresort to \ex{....} just to spell your name in a native encoding.So feel free to put your strings in your encoding in quotes andregexes..Sh "tr/// with ranges".IX Subsection "tr/// with ranges"The \fBencoding\fR pragma works by decoding string literals in\&\f(CW\*(C`q//,qq//,qr//,qw///, qx//\*(C'\fR and so forth. In perl 5.8.0, thisdoes not apply to \f(CW\*(C`tr///\*(C'\fR. Therefore,.PP.Vb 4\& use encoding \*(Aqeuc\-jp\*(Aq;\& #....\& $kana =~ tr/\exA4\exA1\-\exA4\exF3/\exA5\exA1\-\exA5\exF3/;\& # \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\- \-\-\-\-\-\-\-\-.Ve.PPDoes not work as.PP.Vb 1\& $kana =~ tr/\ex{3041}\-\ex{3093}/\ex{30a1}\-\ex{30f3}/;.Ve.IP "Legend of characters above" 4.IX Item "Legend of characters above".Vb 6\& utf8 euc\-jp charnames::viacode()\& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\& \ex{3041} \exA4\exA1 HIRAGANA LETTER SMALL A\& \ex{3093} \exA4\exF3 HIRAGANA LETTER N\& \ex{30a1} \exA5\exA1 KATAKANA LETTER SMALL A\& \ex{30f3} \exA5\exF3 KATAKANA LETTER N.Ve.PPThis counterintuitive behavior has been fixed in perl 5.8.1..PP\fIworkaround to tr///;\fR.IX Subsection "workaround to tr///;".PPIn perl 5.8.0, you can work around as follows;.PP.Vb 3\& use encoding \*(Aqeuc\-jp\*(Aq;\& # ....\& eval qq{ \e$kana =~ tr/\exA4\exA1\-\exA4\exF3/\exA5\exA1\-\exA5\exF3/ };.Ve.PPNote the \f(CW\*(C`tr//\*(C'\fR expression is surrounded by \f(CW\*(C`qq{}\*(C'\fR. The idea behindis the same as classic idiom that makes \f(CW\*(C`tr///\*(C'\fR 'interpolate'..PP.Vb 2\& tr/$from/$to/; # wrong!\& eval qq{ tr/$from/$to/ }; # workaround..Ve.PPNevertheless, in case of \fBencoding\fR pragma even \f(CW\*(C`q//\*(C'\fR is affected so\&\f(CW\*(C`tr///\*(C'\fR not being decoded was obviously against the will of Perl5Porters so it has been fixed in Perl 5.8.1 or later..SH "EXAMPLE \- Greekperl".IX Header "EXAMPLE - Greekperl".Vb 1\& use encoding "iso 8859\-7";\&\& # \exDF in ISO 8859\-7 (Greek) is \ex{3af} in Unicode.\&\& $a = "\exDF";\& $b = "\ex{100}";\&\& printf "%#x\en", ord($a); # will print 0x3af, not 0xdf\&\& $c = $a . $b;\&\& # $c will be "\ex{3af}\ex{100}", not "\ex{df}\ex{100}".\&\& # chr() is affected, and ...\&\& print "mega\en" if ord(chr(0xdf)) == 0x3af;\&\& # ... ord() is affected by the encoding pragma ...\&\& print "tera\en" if ord(pack("C", 0xdf)) == 0x3af;\&\& # ... as are eq and cmp ...\&\& print "peta\en" if "\ex{3af}" eq pack("C", 0xdf);\& print "exa\en" if "\ex{3af}" cmp pack("C", 0xdf) == 0;\&\& # ... but pack/unpack C are not affected, in case you still\& # want to go back to your native encoding\&\& print "zetta\en" if unpack("C", (pack("C", 0xdf))) == 0xdf;.Ve.SH "KNOWN PROBLEMS".IX Header "KNOWN PROBLEMS".IP "literals in regex that are longer than 127 bytes" 4.IX Item "literals in regex that are longer than 127 bytes"For native multibyte encodings (either fixed or variable length),the current implementation of the regular expressions may introducerecoding errors for regular expression literals longer than 127 bytes..IP "\s-1EBCDIC\s0" 4.IX Item "EBCDIC"The encoding pragma is not supported on \s-1EBCDIC\s0 platforms.(Porters who are willing and able to remove this limitation arewelcome.).IP "format" 4.IX Item "format"This pragma doesn't work well with format because PerlIO does notget along very well with it. When format contains non-asciicharacters it prints funny or gets \*(L"wide character warnings\*(R".To understand it, try the code below..Sp.Vb 11\& # Save this one in utf8\& # replace *non\-ascii* with a non\-ascii string\& my $camel;\& format STDOUT =\& *non\-ascii*@>>>>>>>\& $camel\& .\& $camel = "*non\-ascii*";\& binmode(STDOUT=>\*(Aq:encoding(utf8)\*(Aq); # bang!\& write; # funny \& print $camel, "\en"; # fine.Ve.SpWithout binmode this happens to work but without binmode, \fIprint()\fRfails instead of \fIwrite()\fR..SpAt any rate, the very use of format is questionable when it comes tounicode characters since you have to consider such things as characterwidth (i.e. double-width for ideographs) and directions (i.e. \s-1BIDI\s0 forArabic and Hebrew)..IP "Thread safety" 4.IX Item "Thread safety"\&\f(CW\*(C`use encoding ...\*(C'\fR is not thread-safe (i.e., do not use in threadedapplications)..Sh "The Logic of :locale".IX Subsection "The Logic of :locale"The logic of \f(CW\*(C`:locale\*(C'\fR is as follows:.IP "1." 4If the platform supports the langinfo(\s-1CODESET\s0) interface, the codesetreturned is used as the default encoding for the open pragma..IP "2." 4If 1. didn't work but we are under the locale pragma, the environmentvariables \s-1LC_ALL\s0 and \s-1LANG\s0 (in that order) are matched for encodings(the part after \f(CW\*(C`.\*(C'\fR, if any), and if any found, that is used as the default encoding for the open pragma..IP "3." 4If 1. and 2. didn't work, the environment variables \s-1LC_ALL\s0 and \s-1LANG\s0(in that order) are matched for anything looking like \s-1UTF\-8\s0, and ifany found, \f(CW\*(C`:utf8\*(C'\fR is used as the default encoding for the openpragma..PPIf your locale environment variables (\s-1LC_ALL\s0, \s-1LC_CTYPE\s0, \s-1LANG\s0)contain the strings '\s-1UTF\-8\s0' or '\s-1UTF8\s0' (case-insensitive matching),the default encoding of your \s-1STDIN\s0, \s-1STDOUT\s0, and \s-1STDERR\s0, and of\&\fBany subsequent file open\fR, is \s-1UTF\-8\s0..SH "HISTORY".IX Header "HISTORY"This pragma first appeared in Perl 5.8.0. For features that require 5.8.1 and better, see above..PPThe \f(CW\*(C`:locale\*(C'\fR subpragma was implemented in 2.01, or Perl 5.8.6..SH "SEE ALSO".IX Header "SEE ALSO"perlunicode, Encode, open, Filter::Util::Call,.PPCh. 15 of \f(CW\*(C`Programming Perl (3rd Edition)\*(C'\fRby Larry Wall, Tom Christiansen, Jon Orwant;O'Reilly & Associates; \s-1ISBN\s0 0\-596\-00027\-8
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -