3v4l.org

run code in 300+ PHP versions simultaneously
<?php function is_today() { $date_array = array( '29-10-2018', '4-11-2018', '25-11-2018', '2-12-2018', '16-12-2018', '23-12-2018', '30-12-2018', '27-01-2019', '24-02-2019', '31-03-2019', '14-04-2019', '28-04-2019', '26-05-2019', '30-06-2019', '28-07-2019', '25-08-2019', '29-09-2019', '27-10-2019', '24-11-2019', '15-12-2019', '22-12-2019', '29-12-2019' ); $now = new DateTime("now"); // foreach($date_array as $date) { $match_date = new DateTime($date); $interval = $now->diff($match_date); if($interval->days == 0) { return true; break; } else { return false; } } } var_dump(is_today());
Output for git.master, git.master_jit, rfc.property-hooks
bool(true)

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
47.51 ms | 401 KiB | 8 Q