Tag Archives: Funday Friday

Funday Friday – Let a thousand string concatenations bloom

How many different ways (in PHP) are there to concatenate the string values in two variables and put the result in a third variable? Here are a few to start: $alice = $bob . $charlie; $alice = “$bob$charlie”; $alice = … Continue reading

Posted in PHP | Tagged , , | Leave a comment