A string and an integer value are added, and the result is an integer value.
<?php $a="5"; $b= 7 + $a; echo "7 + $a = $b"; ?>