I have array look like this.
$setLogic = array(array("Conj"=>null,"Topic"=>True),array("Conj"=>"Or","Topic"=>True),array("Conj"=>"Or","Topic"=>false),
I try to build a IF statement with the dynamicly with this way.
foreach($setLogic as $value){
   echo $value['Conj'].(int)$value['Topic'];
    if($value['Conj'].(int)$value['Topic'] == true){
         $getBoolean[] = true;
    }
    else{
         $getBoolean[] = false;
    }
I just need something like this.
(true or true or false) and return true or false
 
     
    