// 1-й вариант
echo "Format: {$format}. Config: {$config->path}. System (OS): {$os}.\n\n";
// 2-й вариант
echo 'Format: ' . $format . '. Config: ' . $config->path . '. System (OS): ' . $os . ".\n\n";
echo "Format: $format. Config: $config->path. System (OS): $os.\n\n";