Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get this:

if($a[2] > $b[2] && $c[2] < 3) echo "bingo";

But because the condition is retrieved from database, I need to get the whole condition into a variable and then somehow find a way to change the variable back into a condition. I thought it will be something along this line:

$condition = "$a[2] > $b[2] && $c[2] < 3";
$evaledCondition = eval("$condition;");
if($evaledCondition) echo "bingo";

Apparently it didn't work. Am I missing something?

share|improve this question
2  
Becareful using eval...especially with user supplied data. – Yzmir Ramirez Jun 10 '11 at 6:51

2 Answers

up vote 10 down vote accepted

eval() returns NULL unless return is called in the evaluated code

   $evaledCondition = eval("return $condition;");
share|improve this answer

On this line:

$condition = "$a[2] > $b[2] && $c[2] < 3";

PHP will attempt to substitute $a, $b etc with actual values (and might generate NOTICES) before storing it in $condition. Try (i) using single quotes inside which no variable substitution is done by PHP (ii) moving the left hand side operator inside eval:

<?php
error_reporting(E_ALL);
$a = array(2 => 123);
$b = array(2 => 456);
$c = array(2 => 789);
$condition = '$a[2] > $b[2] && $c[2] < 3';
eval('$evaledCondition = ' . $condition . ';');
var_dump($evaledCondition);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.