Lines Matching full:days
32 $datetime = date('Y-m-d H:i:s', strtotime('+5 days'));
35 $datetime = date('Y/d/m', strtotime('+5 days'));
44 // Test date that is 5 days from now should match "10 days before"
45 $futureDate = date('Y-m-d', strtotime('+5 days'));
48 // Test date that is 15 days from now should not match "10 days before"
49 $farFutureDate = date('Y-m-d', strtotime('+15 days'));
62 // Test date that is 15 days ago should match "10 days after"
63 $farPastDate = date('Y-m-d', strtotime('-15 days'));
66 // Test date that is 5 days ago should not match "10 days after"
67 $pastDate = date('Y-m-d', strtotime('-5 days'));
89 // Test with 0 days - both should match today