Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: mod_perl2 and utf8

by ikegami (Patriarch)
on Dec 23, 2009 at 18:35 UTC ( [id://814136]=note: print w/replies, xml ) Need Help??


in reply to mod_perl2 and utf8

By the way,

if (!Encode::is_utf8($str) && $str =~ m/\x80-\xff/) { $str = Encode::encode_utf8($str); # Get utf8 byte seq Encode::_utf8_on($str); # and flip the flag } $r->print($str);
is the same as
utf8::upgrade($str); $r->print($str);

But as previously explained, the correct solution is

utf8::encode($str); $r->print($str);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://814136]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-19 01:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found