Help for this page
$var = 'foo'; $str = "abc $var def"; print $str; abc foo def
$str = "\'abc $var def\'"; print $str; 'abc foo def'