variable as string php code example

Example 1: php variable in string

$a = '12345';

// This works:
echo "qwe{$a}rty"; // qwe12345rty, using braces
echo "qwe" . $a . "rty"; // qwe12345rty, concatenation used

// Does not work:
echo 'qwe{$a}rty'; // qwe{$a}rty, single quotes are not parsed
echo "qwe$arty"; // qwe, because $a became $arty, which is undefined

Example 2: php variables

<?php
/* In PHP, a variable starts with the $ sign, 
followed by the name of the variable:
*/

$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>

Example 3: PHP Variable in String

phpCopy# php 7.*
<?php
$txt = "salt";
echo "{$txt}y";
?>

Example 4: how to make a variable in php

$varName = "Hello, World";

Tags:

Php Example