This might be a silly question but it struck me, and here i ask.
In some cases your write less with:
$someLongVarName ="Hi"; $someLongVarName .=" there";
VS
$someLongVarName ="Hi"; $someLongVarName = "$someLongVarName there";