Простые типы / Символьный тип

<?php

//In PHP there are no char
//type, only string 
$charA = 'A';
echo "type: "gettype($charA), "\n";

$str = "character " . $charA;
//str is "character A"
echo $str;