Files
php_8/expr/concat_eq.php
2022-04-15 09:57:03 +03:00

7 lines
151 B
PHP

<?php
$number = 216;
$str = 'Сегодня ';
$str .= $number;
$str .= ' участников';
echo $str; // Сегодня 216 участников