是否可以将代码插入PHP字符串

时间:2019-01-19 10:56:00

标签: php

我正在尝试在php字符串中动态插入代码。简化的示例为:

echo "two plus three equals {2+3}"; //the code in the brackets would evaluate to 5

我知道可以很容易地通过以下方式完成

$var = 2+3;
echo "two plus three equals $var";

但是有可能不需要额外的可变步骤或使用eval吗?

0 个答案:

没有答案