Example #1
0
    public function testModifyImmutable()
    {
        $a = new DateTime("2009-12-12");
        $b = $a->modify('+2 days');
        $this->assertNotSame($a, $b);

        $this->assertEquals('2009-12-12', $a->format('Y-m-d'));
        $this->assertEquals('2009-12-14', $b->format('Y-m-d'));
    }