phpCopy<?php $variable = 10; $string1 = "".$variable; echo "$string1"; $string1 = $variable.""; echo "$string1"; ?>