formatAsString() 공개 메소드

Format the value as a string.
public formatAsString ( ) : string
리턴 string
 public function testToString()
 {
     $value = new \DateTime();
     $timestamp = new Timestamp($value);
     $expected = $value->format('Y-m-d H:i:s.uP');
     $this->assertEquals($expected, (string) $timestamp);
     $this->assertEquals($expected, $timestamp->formatAsString());
 }