{"id":12193,"date":"2022-05-11T04:40:03","date_gmt":"2022-05-11T08:40:03","guid":{"rendered":"http:\/\/local.brightwhiz\/?post_type=snippets&p=12193"},"modified":"2022-05-11T04:40:05","modified_gmt":"2022-05-11T08:40:05","slug":"php-check-if-date-is-greater-than-today","status":"publish","type":"snippets","link":"http:\/\/local.brightwhiz\/snippets\/php-check-if-date-is-greater-than-today\/","title":{"rendered":"Check if Date is Greater Than Today Using PHP"},"content":{"rendered":"\n
Use this code snippet to check if date is greater than today.<\/p>\n\n\n\n
$date_today = new DateTime();\n$existing_date = new DateTime( "01\/02\/2023" );\n\nif ( $date_today > $existing_date ) {\n\n echo "greater than today";\n\n} else {\n\n echo "Less than today";\n\n}<\/code><\/pre>\n\n\n\nAlternate:<\/p>\n\n\n\n
$date_today = date("Y-m-d");\n$existing_date = "2023-01-02";\n\nif ( $date_today > '2016-01-02') {\n\n echo "greater than today";\n\n} else {\n\n echo "Less than today";\n\n}<\/code><\/pre>\n","protected":false},"comment_status":"open","ping_status":"closed","template":"","meta":[],"categories":[953,23,25,27,15,16],"tags":[433,449,452,471,544,638],"yoast_head":"\nPHP Check if Date is Greater Than Today Example<\/title>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n