1

我有一系列条件:

$arrConditions = array ('>=2', '==1', '<=10');

...我希望能够在 if...语句中使用。

IE。

if (5 $arrConditions[0])
{
  ...do something
}

...这将与:

if (5 >= 2)
{
  ...do something
}

有什么帮助吗?

谢谢

4

2 回答 2

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
}

但同样——很可能你可以用另一种更简单的方法来解决它。

于 2013-02-25T12:49:25.093 回答
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';
}
?> 
于 2013-02-25T13:19:34.127 回答