Search entire blog
Categories
Useful links
-
Tag Archives: Php String
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
