Lines Matching refs:datetime
11 $datetime = new DateTime("2009-01-31 15:14:10");
13 echo "Initial date: " . $datetime ->format(DATE_RFC2822) . "\n";
15 $datetime->setTime(17, 20);
16 echo "After modification1 " . $datetime ->format(DATE_RFC2822) . "\n";
18 $datetime->setTime(19, 05, 59);
19 echo "After modification2 " . $datetime ->format(DATE_RFC2822) . "\n";
21 $datetime->setTime(24, 10);
22 echo "After modification3 " . $datetime ->format(DATE_RFC2822) . "\n";
24 $datetime->setTime(47, 35, 47);
25 echo "After modification4 " . $datetime ->format(DATE_RFC2822) . "\n";
27 $datetime->setTime(54, 25);
28 echo "After modification5 " . $datetime ->format(DATE_RFC2822) . "\n";