我想做的就是从数据库中获取保存的运算符,并在if else条件下使用它。这是我的代码。它总是回归真实。无法弄清楚我做错了什么
$sql_c = "select cc.operator, cc.dpt_id, dp.dpt_value as value from criteria_condition cc
join decision_point_type dp on cc.dpt_id = dp.dpt_id where criteria_id = $nodecriteria";
$res_c = mysql_query($sql_c);
while($row = mysql_fetch_array($res_c)){
$operand = $row['operator'];
$dpt_value = $row['value'];
}
echo "'$userinput'".$operand ."'$dpt_value'".'<br>';
if("'$userinput'".$operand."'$dpt_value'"){
echo 'true';
}else{
echo 'false';
}
Echo显示&#34;你好&#34; ===&#34;你好&#34;但是,如果条件不能正常工作
答案 0 :(得分:0)
您无法将字符串用作此类运算符。
看看这个:
您可以使用eval(),但最安全的路线可能是:
$left = (int)$a;
$right = (int)$b;
$result = 0;
switch($char){
case "*":
$result = $left * $right;
break;
case "+";
$result = $left + $right;
break;
// etc
}
<强>资源:强>