So I have something like the following:
$a = 3;
$b = 4;
$c = 5;
$d = 6;
and I run a comparison like
if($a>$b || $c>$d) { echo 'yes'; };
That all works just fine. Is it possible to use a variable in place of the operator? Something like:
$e = ||;
Which I could then use as
if($a>$b $e $c>$d) { echo 'yes'; };
See Question&Answers more detail:os