Answers for "if a is greater than b in php"

PHP
2

what sign is greater than or equal to php

// Greater than or equal to comparison operator:  >=
if ($someInt >= $otherInt) {
  // Do your logic ;)
}
Posted by: Guest on July-22-2021

Code answers related to "if a is greater than b in php"

Browse Popular Code Answers by Language