echo
also follows the echo 'foo', 'bar'
construct, which splits elements into separate expressions into echoes. In this case, you do not need to worry about the concatenation order.
So, you could do <?php echo '-', (1 + 1), ' crazy cats'; ?>
<?php echo '-', (1 + 1), ' crazy cats'; ?>
and your cats would not care about the negatives!
source share