interpolation: $result = "$hello $world"; concatenation: $result = $hello.' '.$world; reverse-concat: $result = $hello.(' '.$world); interp-concat: $result = "$hello ".$world; concat-interp: $result = $hello." $world"; sprintf: $result = sprintf("%s %s", $hello, $world); join: $result = join(' ', $hello, $world); super-join: $result = join('', $hello, ' ', $world); #### reverse-concat: 14.24 interp-concat: 14.43 concat-interp: 14.68 interpolation: 14.98 concatenation: 15.74 super-join: 17.65 join: 17.68 sprintf: 24.65