Answers for "php if this is greater then and"

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

Browse Popular Code Answers by Language