@@ 3900-3906 (lines=7) @@ | ||
3897 | // execute the necessary operation |
|
3898 | switch ($operation) { |
|
3899 | // Greater than |
|
3900 | case '>': |
|
3901 | if ($useLowercaseFirstComparison) { |
|
3902 | $result = $this->strcmpLowercaseFirst($operand1, $operand2) > 0; |
|
3903 | } else { |
|
3904 | $result = ($operand1 > $operand2); |
|
3905 | } |
|
3906 | ||
3907 | break; |
|
3908 | // Less than |
|
3909 | case '<': |
|
@@ 3909-3915 (lines=7) @@ | ||
3906 | ||
3907 | break; |
|
3908 | // Less than |
|
3909 | case '<': |
|
3910 | if ($useLowercaseFirstComparison) { |
|
3911 | $result = $this->strcmpLowercaseFirst($operand1, $operand2) < 0; |
|
3912 | } else { |
|
3913 | $result = ($operand1 < $operand2); |
|
3914 | } |
|
3915 | ||
3916 | break; |
|
3917 | // Equality |
|
3918 | case '=': |