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); var_dump($match_date); var_dump($now); $interval = $now->diff($match_date); if($interval->days === 0) { return true; break; } else { return false; } } } var_dump(is_today());
Output for git.master
object(DateTime)#2 (3) { ["date"]=> string(26) "2018-10-29 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } object(DateTime)#1 (3) { ["date"]=> string(26) "2018-10-28 13:12:37.003518" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } bool(true)
Output for git.master_jit
object(DateTime)#2 (3) { ["date"]=> string(26) "2018-10-29 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } object(DateTime)#1 (3) { ["date"]=> string(26) "2018-10-28 13:12:37.003829" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } bool(true)
Output for rfc.property-hooks
object(DateTime)#2 (3) { ["date"]=> string(26) "2018-10-29 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } object(DateTime)#1 (3) { ["date"]=> string(26) "2018-10-28 13:12:37.003661" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } 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:
50.31 ms | 401 KiB | 8 Q