PHP 클래스 Symfony\Component\Translation\Interval

An interval can represent a finite set of numbers: {1,2,3,4} An interval can represent numbers between two numbers: [1, +Inf] ]-1,2[ The left delimiter can be [ (inclusive) or ] (exclusive). The right delimiter can be [ (exclusive) or ] (inclusive). Beside numbers, you can use -Inf and +Inf for the infinite.
또한 보기: http://en.wikipedia.org/wiki/Interval_%28mathematics%29#The_ISO_notation
저자: Fabien Potencier ([email protected])
파일 보기 프로젝트 열기: pmjones/php-framework-benchmarks 1 사용 예제들

공개 메소드들

메소드 설명
getIntervalRegexp ( ) : string Returns a Regexp that matches valid intervals.
test ( integer $number, string $interval ) Tests if the given number is in the math interval.

비공개 메소드들

메소드 설명
convertNumber ( $number )

메소드 상세

getIntervalRegexp() 공개 정적인 메소드

Returns a Regexp that matches valid intervals.
public static getIntervalRegexp ( ) : string
리턴 string A Regexp (without the delimiters)

test() 공개 정적인 메소드

Tests if the given number is in the math interval.
public static test ( integer $number, string $interval )
$number integer A number
$interval string An interval