isLessThan() public static méthode

Returns true if value is less than $max, false otherwise.
public static isLessThan ( mixed $value, mixed $max ) : boolean
$value mixed
$max mixed
Résultat boolean
Exemple #1
0
 /**
  *
  */
 public function testIsLessThan()
 {
     $this->assertTrue(Inspekt::isLessThan('a', 'b'));
 }