我有一系列条件:
$arrConditions = array ('>=2', '==1', '<=10');
...我希望能够在if ...声明中使用。
IE。
if (5 $arrConditions[0])
{
...do something
}
......与...相同:
if (5 >= 2)
{
...do something
}
任何帮助?
由于
答案 0 :(得分:2)
这样的要求是设计糟糕的明确标志 最有可能你可以做另一种更常见的方式。
然而,永远不要使用eval来做这些事情 至少将每个运算符成对存储 - 运算符和操作数。
$arrConditions = array (
array('>=',2),
array('==',1),
array('<=',10),
);
然后使用开关:
list ($operator,$operand) = $arrConditions[0];
switch($operator) {
case '==':
$result = ($input == $operand);
break;
case '>=':
$result = ($input >= $operand);
break;
// and so on
}
但是再次 - 很可能你可以用另一种更简单的方式解决它。
答案 1 :(得分:0)
这个怎么样?
<?php
$arrConditions = array('==2', '==9', '==5', '==1', '==10', '==6', '==7');
$count = 0;
$myval = 0;
foreach ($arrConditions as $cond) {
$str = "if(5 $cond) { return $count;}";
$evalval = eval($str);
if (!empty($evalval)) {
$myval = $count;
}
$count++;
}
switch ($myval) {
case 0: echo '==2 satisfied';
break;
case 1: echo '==9 satisfied';
break;
case 2: echo '==5 satisfied';
break;
case 3: echo '==1 satisfied';
break;
case 4: echo '==10 satisfied';
break;
default : echo 'No condition satisfied';
}
?>