Answers for "php string with variable as variable"

PHP
0

PHP Variable in String

phpCopy#php 7.x
<?php
$taste = "ie";
echo sweet.$taste;
?>
Posted by: Guest on April-23-2021
0

PHP Variable in String

phpCopy#php 7.x
<?php
$prefix = "Comfort";
$suffix = "able";
echo "{$prefix}{$suffix}";
?>
Posted by: Guest on April-23-2021

Code answers related to "php string with variable as variable"

Browse Popular Code Answers by Language