24
Comments
  • 11
    Why? I like it since it's not ambiguous between concatenation and addition like in js.
  • 3
    I prefer implode(' ', array('Hello','World!') ) in complex scenarios.

    Or for very complex scenarios
    ob_start(); ?>
    Stuff HERE
    <?php $buffer = ob_get_clean(); ?>
  • 2
    Some have . Some , some + who cares?
  • 0
    Same in Perl
  • 2
    Coming from a Java/c++ context this got me confused at first.
Add Comment