Google\Cloud\BigQuery\Date::formatAsString PHP Метод

formatAsString() публичный Метод

Format the value as a string.
public formatAsString ( ) : string
Результат string
    public function formatAsString()
    {
        return $this->value->format(self::FORMAT);
    }

Usage Example

Пример #1
0
 public function testStringFormatting()
 {
     $value = new \DateTime();
     $date = new Date($value);
     $expected = $value->format('Y-m-d');
     $this->assertEquals($expected, (string) $date);
     $this->assertEquals($expected, $date->formatAsString());
 }