php concat int to string code example
Example 1: add more data to variable php
$a = "Hello ";
$a .= "World!";
Example 2: join string php
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>
$a = "Hello ";
$a .= "World!";
<?php
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);
?>