Help for this page

Select Code to Download


  1. or download this
    sub my_print($)
    {
    ...
            print ${$string};
            _utf8_on(${$string}) if($is_utf8);
    }
    
  2. or download this
    my $string;
    open(my $out, "+<", \$string);
    ...
    $page->output($out);
    close($out);
    print $string;