Just FYI, while bakerng's solution is probably the most efficient with regards to processing speed, you have a few other options, including:
$full_name = "$first_name $last_name"; // must be double-quotes, not single
$full_name = <<<END
$first_name $last_name
END;
$full_name = sprintf("%s %s", $first_name, $last_name);