[lang-ref] String interpolation (variable) ( php )

<?php
public function testStringInterpolationWithVariable(): void
{
	// "{$x}"
	$name = 'John';
	$s = "My name is {$name}.";
	$this->assertSame('My name is John.', $s);
}