Page 1 of 1

concatenating and efficiency

Posted: Thu Apr 10, 2003 6:18 am
by Guy
is there an efficiency difference between concatenating

Code: Select all

<?php
$str = $str . "text"; 
?>
and

Code: Select all

<?php
$str .= "text"
?>
Guy