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