Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

what does >= mean in php

//>= Stands for greater than or equal to.
$a = 1;
$b = 0;
  if($a >= $b){
   return true; 
  }else{
   return false; 
  }
//This would return false becaue 0 is not greater than or equal to 1.
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php
ADD COMMENT
Topic
Name
6+9 =