No, that syntax isn't available. The best you could do would be an eval(), which would not be recommended, especially if the $e came from user input (ie, a form), or a switch statement with each operator as a case
switch($e)
{
case "||":
if($a>$b || $c>$d)
echo 'yes';
break;
}