Answers for "php mixing 2 string"

PHP
1

php mixing 2 string

<?php
$a = "Hello ";
$b = $a . "World!"; // now $b contains "Hello World!"

$a = "Hello ";
$a .= "World!";     // now $a contains "Hello World!"
Posted by: Guest on March-09-2021

Code answers related to "php mixing 2 string"

Browse Popular Code Answers by Language