Skip to content

String Interpolation

String interpolation allows variables to be inserted inside strings.

It works inside double-quoted strings.

$name = "Alice";
echo "Hello $name";