Help for this page

Select Code to Download


  1. or download this
      interpolation: $result = "$hello $world";                  
      concatenation: $result = $hello.' '.$world;                
    ...
            sprintf: $result = sprintf("%s %s", $hello, $world); 
               join: $result = join(' ', $hello, $world);        
         super-join: $result = join('', $hello, ' ', $world);
    
  2. or download this
    reverse-concat: 14.24
     interp-concat: 14.43
    ...
        super-join: 17.65
              join: 17.68
           sprintf: 24.65