show/hide this revision's text 2 spelling

PHP: Is it better to concatinate concatenate on 1 line or multiple lines? Or is there a difference?

show/hide this revision's text 1

PHP: Is it better to concatinate on 1 line or multiple lines? Or is there a difference?

Is there a difference or is one better than the other of the following:

$var = '';
...
$var .= 'blah blah';
$var .= $var2;
$var .= 'blah blah';

Or

$var = '';
...
$var .= 'blah blah' . $var2 . 'blah blah';

Is there a speed difference or is there a reason why you'd pick one over the other?