PHP 클래스 Symfony\Component\Form\ValueTransformer\DateTimeToStringTransformer

저자: Bernhard Schussek ([email protected])
저자: Florian Eckerstorfer ([email protected])
상속: extends Symfony\Component\Form\Configurable, implements Symfony\Component\Form\ValueTransformer\ValueTransformerInterface
파일 보기 프로젝트 열기: pmjones/php-framework-benchmarks 1 사용 예제들

공개 메소드들

메소드 설명
reverseTransform ( string $value, $originalValue ) : DateTime Transforms a date string in the configured timezone into a DateTime object
transform ( DateTime $value ) : string Transforms a DateTime object into a date string with the configured format and timezone

보호된 메소드들

메소드 설명
configure ( ) {@inheritDoc}

메소드 상세

configure() 보호된 메소드

{@inheritDoc}
protected configure ( )

reverseTransform() 공개 메소드

Transforms a date string in the configured timezone into a DateTime object
public reverseTransform ( string $value, $originalValue ) : DateTime
$value string A value as produced by PHP's date() function
리턴 DateTime A DateTime object

transform() 공개 메소드

Transforms a DateTime object into a date string with the configured format and timezone
public transform ( DateTime $value ) : string
$value DateTime A DateTime object
리턴 string A value as produced by PHP's date() function