Answers for "php inplode"

PHP
0

inplode php

$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
Posted by: Guest on October-09-2021
0

php glue strings

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

$a = "Hello ";
$a .= "World!";     // now $a contains "Hello World!"
?>
Posted by: Guest on August-03-2020

Browse Popular Code Answers by Language