|
Posted by Michael Fesser on July 3, 2008, 6:48 pm
Please log in for more thread options
.oO(Leigh Finch)
>Quick question about the PHP compiler, is there any performance
>difference between
>
>$string .= $new;
>
>and
>
>$string = $string . $new;
>
>Does the compiler see them as equivalent and optimize to the later, or
>does concatenate and then copy?
Don't worry and google "premature optimization" if you want to.
Micha
|