isLessThan() 공개 정적인 메소드

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