使用heredoc或nowdoc仅解析一些变量

时间:2015-07-26 17:00:53

标签: php string heredoc nowdoc

使用heredoc或nowdoc,我怎么能创建$ sting?

$x_value=2;
$string='$x='.$x_value.';';
exit($string);  //$x=2;

PS。我知道像这样的剧本的滑坡

1 个答案:

答案 0 :(得分:0)

根据Mark的评论,应该转义不应解析的值:

$x_value=2;
$string = <<<EOD
\$x=$x_value;
EOD;
exit($string);