Google\Spreadsheet\Worksheet::getUpdated PHP Method

getUpdated() public method

Get the updated date
public getUpdated ( ) : DateTime
return DateTime
    public function getUpdated()
    {
        return new DateTime($this->xml->updated->__toString());
    }

Usage Example

コード例 #1
0
 public function testGetUpdated()
 {
     $xml = file_get_contents(__DIR__ . '/xml/worksheet.xml');
     $worksheet = new Worksheet(new SimpleXMLElement($xml));
     $this->assertTrue($worksheet->getUpdated() instanceof DateTime);
     $this->assertEquals('2013-02-10 21:12:33', $worksheet->getUpdated()->format('Y-m-d H:i:s'));
 }
All Usage Examples Of Google\Spreadsheet\Worksheet::getUpdated