PHP 클래스 business\TimeInterval

저자: Florian Voutzinos ([email protected])
상속: implements JsonSerializable
파일 보기 프로젝트 열기: florianv/business 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( Time $start, Time $end ) Creates a time interval.
contains ( Time $time ) : boolean Checks if the interval contains the given time.
fromString ( string $startTime, string $endTime ) : TimeInterval Creates a new interval from time strings.
getEnd ( ) : Time Gets the end time.
getStart ( ) : Time Gets the start time.
jsonSerialize ( )

메소드 상세

__construct() 공개 메소드

Creates a time interval.
public __construct ( Time $start, Time $end )
$start Time
$end Time

contains() 공개 메소드

Checks if the interval contains the given time.
public contains ( Time $time ) : boolean
$time Time
리턴 boolean

fromString() 공개 정적인 메소드

Creates a new interval from time strings.
public static fromString ( string $startTime, string $endTime ) : TimeInterval
$startTime string The start time
$endTime string The end time
리턴 TimeInterval

getEnd() 공개 메소드

Gets the end time.
public getEnd ( ) : Time
리턴 Time

getStart() 공개 메소드

Gets the start time.
public getStart ( ) : Time
리턴 Time

jsonSerialize() 공개 메소드

public jsonSerialize ( )