Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: mod_perl2 and utf8

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

Help for this page

Select Code to Download


  1. or download this
    $r->print($strA);  # XXX
    $r->print($strB);  # XXX
    
  2. or download this
    $r->print(Encode::encode_utf8($strA));
    $r->print(Encode::encode_utf8($strB));
    
  3. or download this
    utf8::encode my $strA_utf8 = $strA;
    utf8::encode my $strB_utf8 = $strB;
    $r->print($strA);
    $r->print($strB);
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 01:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found