标签: 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吗?