Combining a string and a number
<?php $str = "This is an example of ". 3 ." in the middle of a string."; echo $str; ?>