伙计们,这对你们大多数人来说可能是一个简单的问题。但我对如何使用保存在变量中的运算符符号执行操作感到困惑。例子。
$first=5;
$second=5;
$operator="+";
$result=$first.$operator.$second;
echo $result;
但 $result 只会打印 5+5。我希望它执行操作。
我的想法是将所有操作置于 if 条件中 -> if($operator == '+'){add the first and second operand}。还有其他想法吗?