concatenating and efficiency
Posted: Thu Apr 10, 2003 6:18 am
is there an efficiency difference between concatenating
and
Guy
Code: Select all
<?php
$str = $str . "text";
?>Code: Select all
<?php
$str .= "text"
?>