Help for this page

Select Code to Download


  1. or download this
    print "text text " . $obj->method1() . " more text " .
      $obj->method2() . " blah blah " . $obj->method3() . "\n";
    
  2. or download this
    printf "text text %s more text %s blah blah %s\n",
           $obj->method1(),$obj->method2(),$obj->method3();