Answers for "php append string"

PHP
1

php connect strings

$string3 = $string1 . $string2;
Posted by: Guest on October-08-2020
7

php concat

$a = "hello";
$b = "world";
$c = $a . " " . $b;

echo $c; // hello world
Posted by: Guest on February-24-2020
6

php append 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 February-12-2020
1

append variable into string php

echo "'$animal'";
Posted by: Guest on January-27-2021
1

add more data to variable php

$a = "Hello ";
$a .= "World!";
Posted by: Guest on August-20-2020
0

append variable to string php

<?php
  $example = "Example text"
  echo ("Example " . $example ." text")
?>
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language