PHPで文字列を結合する
文字列リテラル(ダブルクォーテーション(")で囲んだ文字列)を結合します。
. でつなげれば、変数に格納したものも含めて文字列を連結できます。
文字列以外に数値等も連結できます。
concatenate_string_literal.php
<?php

$panda     = "panda";
$attribute = "is cute.";

// Concatenate string and variables using .
echo $panda . " " . $attribute . "\n";

      
実行結果
$ php concatenate_string_literal.php
panda is cute.