I am trying to add a condition dynamically in the if condition . But it is not working . Please help me to fix the issue.
I am trying a code like this
 $day_difference = "some integer value";
  if(sheduled_time == 'evening'){
        $condition = '>';
    }else{
      $condition = '==';
    }
then
if($day_difference.$condition.  0){ 
  echo "something";       
 }else{
   echo "h";
 }
 
     
     
     
     
    