php interpolation string code example
Example 1: php var_export to string
$someString = var_export($anyVariable, true);
Example 2: php string interpolation
$value = "My Value";
$value2 = 5;
$string = "The value is {$value} and the second is {$value2}";