String Interpolation
String interpolation allows variables to be inserted inside strings.
It works inside double-quoted strings.
Example
Section titled “Example”$name = "Alice";
echo "Hello $name";String interpolation allows variables to be inserted inside strings.
It works inside double-quoted strings.
$name = "Alice";
echo "Hello $name";